#!/usr/bin/env expect ############################################################################ # Purpose: Test of Slurm functionality # Test of nice value specification (--nice option). ############################################################################ # Copyright (C) 2005-2006 The Regents of the University of California. # Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). # Written by Morris Jette # CODE-OCEC-09-009. All rights reserved. # # This file is part of Slurm, a resource management program. # For details, see . # Please also read the included file: DISCLAIMER. # # Slurm is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free # Software Foundation; either version 2 of the License, or (at your option) # any later version. # # Slurm is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more # details. # # You should have received a copy of the GNU General Public License along # with Slurm; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ############################################################################ source ./globals set exit_code 0 set file_in "test$test_id.input" set job_id1 0 set job_id2 0 set job_id3 0 set job_prio1 0 set job_prio2 0 set job_prio3 0 # # Build input script file # make_bash_script $file_in "$bin_sleep 60" # # Submit three jobs with differing nice values # spawn $sbatch --output=/dev/null --error=/dev/null -t2 $file_in expect { -re "Submitted batch job ($number)" { set job_id1 $expect_out(1,string) exp_continue } timeout { log_error "sbatch not responding" set exit_code 1 } eof { wait } } if {$job_id1 == 0} { fail "sbatch submit failed" } spawn $sbatch --output=/dev/null --error=/dev/null -t2 --nice $file_in expect { -re "Submitted batch job ($number)" { set job_id2 $expect_out(1,string) exp_continue } timeout { log_error "sbatch not responding" set exit_code 1 } eof { wait } } if {$job_id2 == 0} { cancel_job $job_id1 fail "Sbatch submit failed" } spawn $sbatch --output=/dev/null --error=/dev/null -t2 --nice=200 $file_in expect { -re "Submitted batch job ($number)" { set job_id3 $expect_out(1,string) exp_continue } timeout { log_error "sbatch not responding" set exit_code 1 } eof { wait } } if {$job_id3 == 0} { cancel_job $job_id1 cancel_job $job_id2 fail "sbatch submit failed" } exec $bin_rm -f $file_in # # Get the priority of each job job with scontrol # spawn $scontrol show job $job_id1 expect { -re "Priority=($number)" { set job_prio1 $expect_out(1,string) exp_continue } timeout { log_error "scontrol not responding" set exit_code 1 } eof { wait } } spawn $scontrol show job $job_id2 expect { -re "Priority=($number)" { set job_prio2 $expect_out(1,string) exp_continue } timeout { log_error "scontrol not responding" set exit_code 1 } eof { wait } } spawn $scontrol show job $job_id3 expect { -re "Priority=($number)" { set job_prio3 $expect_out(1,string) exp_continue } timeout { log_error "scontrol not responding" set exit_code 1 } eof { wait } } # # Make sure the job priorities are as expected # if {$job_prio1 == 0 || $job_prio2 == 0 || $job_prio3 == 0} { log_error "Failed to job priorities of each submitted job" set exit_code 1 } elseif {$job_prio1 < 1000 || $job_prio2 < 1000 || $job_prio3 < 1000} { log_warn "PriorityWeight factors result in a job priority too low for this test" } else { set diff2 [expr $job_prio1 - $job_prio2] set diff3 [expr $job_prio1 - $job_prio3] # Target for diff2 is 101 if {$diff2 < 91 || $diff2 > 111} { log_error "Job2 priority delta bad ($diff2, target is 101)" set exit_code 1 } # Target for diff3 is 202 if {$diff3 < 192 || $diff3 > 212} { log_error "Job3 priority delta bad ($diff3, target is 202)" set exit_code 1 } } cancel_job $job_id1 cancel_job $job_id2 cancel_job $job_id3 if {$exit_code != 0} { fail "Test failed due to previous errors (\$exit_code = $exit_code)" }