#!/usr/bin/env expect ############################################################################ # Purpose: Test of scontrol update job for heterogeneous jobs. # # Output: "TEST: #.#" followed by "SUCCESS" if test was successful, OR # "FAILURE: ..." otherwise with an explanation of the failure, OR # anything else indicates a failure mode that must be investigated. ############################################################################ # Copyright (C) 2017 SchedMD LLC. # Written by Isaac Hartung # 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 test_id "38.10" set exit_code 0 print_header $test_id set prompt "PROMPT: " if {[test_front_end]} { send_user "\nWARNING: This test is incompatible with front-end systems\n" exit $exit_code } else { set task_num 2 } set def_part_name [default_partition] set nb_nodes [get_node_cnt_in_part $def_part_name] if {$nb_nodes < 3} { send_user "\nWARNING: Need 3 or more nodes in default partition\n" exit $exit_code } proc end_it { exit_code } { global het_job_id scancel if {$het_job_id > 0} { exec $scancel $het_job_id } exit $exit_code } proc check { id tl matches } { global scontrol set count 0 spawn $scontrol show job=$id expect { -re "TimeLimit=00:0$tl:00" { incr count exp_continue } timeout { log_error "scontrol not responding\n" end_it 1 } eof { wait } } if {$count != $matches} { log_error "scontrol failure ($count != 3)\n" end_it 1 } } set het_job_id 0 set timeout $max_job_delay spawn $salloc -t9 -N1 : -N1 : -N1 $bin_bash expect { -re "job ($number) has been allocated resources" { set het_job_id $expect_out(1,string) send "export PS1=\"$prompt\"\r" exp_continue } -re "\"$prompt" { # skip this, just echo of setting prompt" exp_continue } -re "$prompt" { #send_user "Job initiated\n" } timeout { log_error "salloc : allocation not granted in $timeout seconds\n" end_it 1 } eof { wait } } if {$het_job_id == 0} { log_error "salloc failure\n" end_it 1 } expect * set timeout 3 check $het_job_id 9 3 exec $scontrol update job=$het_job_id Timelimit=8 check $het_job_id 8 3 exec $scontrol update job=$het_job_id+0 Timelimit=5 check $het_job_id+0 5 1 exec $scontrol update job=$het_job_id+1 Timelimit=6 check $het_job_id+1 6 1 exec $scontrol update job=$het_job_id+2 Timelimit=7 check $het_job_id+2 7 1 check $het_job_id+1 6 1 check $het_job_id+0 5 1 send_user "\nSUCCESS\n" end_it 0