From ec9c444c0cd59712ef9f0b01425a599650d35bd7 Mon Sep 17 00:00:00 2001 From: Moe Jette <jette1@llnl.gov> Date: Thu, 27 Jun 2002 21:42:55 +0000 Subject: [PATCH] Add dist(ibuution) to RPC Add print of node list to allocate test (not working). --- testsuite/slurm_unit/api/manual/allocate-tst.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/testsuite/slurm_unit/api/manual/allocate-tst.c b/testsuite/slurm_unit/api/manual/allocate-tst.c index 9e300bc085c..a54aeb07510 100644 --- a/testsuite/slurm_unit/api/manual/allocate-tst.c +++ b/testsuite/slurm_unit/api/manual/allocate-tst.c @@ -41,7 +41,7 @@ main (int argc, char *argv[]) if (error_code) printf ("allocate error %d\n", error_code); else { - printf ("allocate nodes %s to job %u\n", "TBD", job_mesg.job_id); + printf ("allocate nodes %s to job %u\n", resp_msg.node_list, job_mesg.job_id); } job_count = 1; @@ -69,7 +69,7 @@ main (int argc, char *argv[]) break; } else { - printf ("allocate nodes %s to job %u\n", "TBD", job_mesg.job_id); + printf ("allocate nodes %s to job %u\n", resp_msg.node_list, job_mesg.job_id); } } @@ -85,7 +85,7 @@ main (int argc, char *argv[]) break; } else { - printf ("allocate nodes %s to job %u\n", "TBD", job_mesg.job_id); + printf ("allocate nodes %s to job %u\n", resp_msg.node_list, job_mesg.job_id); } } @@ -101,7 +101,7 @@ main (int argc, char *argv[]) break; } else { - printf ("allocate nodes %s to job %u\n", "TBD", job_mesg.job_id); + printf ("allocate nodes %s to job %u\n", resp_msg.node_list, job_mesg.job_id); } } -- GitLab