From 2031d46770bc0816d0c680e595f5beea77cf2d41 Mon Sep 17 00:00:00 2001 From: Moe Jette <jette1@llnl.gov> Date: Mon, 22 Jul 2002 20:04:22 +0000 Subject: [PATCH] Make test of allocate cleaner (exercise fewer errors). --- testsuite/slurm_unit/api/manual/allocate-tst.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuite/slurm_unit/api/manual/allocate-tst.c b/testsuite/slurm_unit/api/manual/allocate-tst.c index dcdfbee8c9b..5b59ba92e68 100644 --- a/testsuite/slurm_unit/api/manual/allocate-tst.c +++ b/testsuite/slurm_unit/api/manual/allocate-tst.c @@ -101,7 +101,7 @@ main (int argc, char *argv[]) for ( ; job_count <max_jobs; job_count++) { slurm_init_job_desc_msg( &job_mesg ); job_mesg. name = ("more.tiny\0"); - job_mesg. num_procs = 40; + job_mesg. num_procs = 32; job_mesg. user_id = 1500; error_code = slurm_allocate_resources ( &job_mesg , &resp_msg , true ); @@ -117,7 +117,7 @@ main (int argc, char *argv[]) for ( ; job_count <max_jobs; job_count++) { slurm_init_job_desc_msg( &job_mesg ); job_mesg. name = ("more.queue\0"); - job_mesg. num_procs = 40; + job_mesg. num_procs = 32; job_mesg. user_id = 1500; error_code = slurm_allocate_resources ( &job_mesg , &resp_msg , false ); -- GitLab