Skip to content
Snippets Groups Projects
Commit 24870d1b authored by Nathan Yee's avatar Nathan Yee Committed by jette
Browse files

Add job array test to validate ID values reported by scontrol show job

parent 1cf42738
No related branches found
No related tags found
No related merge requests found
...@@ -402,6 +402,7 @@ EXTRA_DIST = \ ...@@ -402,6 +402,7 @@ EXTRA_DIST = \
test27.5 \ test27.5 \
test28.1 \ test28.1 \
test28.2 \ test28.2 \
test28.3 \
usleep usleep
distclean-local: distclean-local:
......
...@@ -720,6 +720,7 @@ EXTRA_DIST = \ ...@@ -720,6 +720,7 @@ EXTRA_DIST = \
test27.5 \ test27.5 \
test28.1 \ test28.1 \
test28.2 \ test28.2 \
test28.3 \
usleep usleep
all: all-am all: all-am
......
...@@ -626,3 +626,5 @@ test28.1 Confirms sbatch --array and scancel of the job arrays. ...@@ -626,3 +626,5 @@ test28.1 Confirms sbatch --array and scancel of the job arrays.
test28.2 checks that the --array environment varibles are correct, and test28.2 checks that the --array environment varibles are correct, and
checks that the --output and -error files were created and checks that the --output and -error files were created and
contain the correct information. contain the correct information.
test28.3 Validates that the scontrol show job contains the job array
fields
...@@ -37,8 +37,8 @@ set file_script "test$test_id.sh" ...@@ -37,8 +37,8 @@ set file_script "test$test_id.sh"
set file_out "test$test_id-%A_%a.output" set file_out "test$test_id-%A_%a.output"
set file_error "test$test_id-%A_%a.error" set file_error "test$test_id-%A_%a.error"
set job_id 0 set job_id 0
set array_begin "0" set array_begin 0
set array_end "4" set array_end 4
set array_id "" set array_id ""
set array_in "" set array_in ""
set array_var "" set array_var ""
......
#!/usr/bin/expect
############################################################################
# Purpose: Test of SLURM functionality
# Validates that the scontrol show job option has the job
# array fields
#
#
# 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) 2011-2013 SchedMD LLC
# Written by Nathan Yee <nyee32@schedmd.com>
#
# This file is part of SLURM, a resource management program.
# For details, see <http://www.schedmd.com/slurmdocs/>.
# 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 "28.3"
set exit_code 0
set array_size 4
set file_script "test$test_id.sh"
set job_id 0
print_header $test_id
if {[get_array_config] < [expr $array_size + 1]} {
send_user "\nWARNING: MaxArraySize is to small\n"
exit 0
}
proc check_ids { job } {
global scontrol array_size exit_code number
for {set index 0} {$index<$array_size} {incr index} {
set match 0
spawn $scontrol show job $job\_$index
expect {
-re "JobId=($number) ArrayJobId=$job ArrayTaskId=($number) " {
if {$job == [expr $expect_out(1,string) - $expect_out(2,string)]} {
incr match
}
}
timeout {
send_user "\nFAILURE: scontrol is not responding\n"
set exit_code 1
}
eof {
wait
}
}
if {$match != 1} {
send_user "\nFAILURE: Array IDs for $job\_$index not found\n"
set exit_code 1
}
}
}
make_bash_script $file_script "sleep 10"
spawn $sbatch -N1 --array=0-[expr $array_size - 1] --begin=midnight --output=/dev/null $file_script
expect {
-re "Submitted batch job ($number)" {
set job_id $expect_out(1,string)
send_user "\njob $job_id was submitted\n"
}
-re "error" {
send_user "\nFAILURE: sbatch did not submit jobs\n"
set exit_code 1
}
timout {
send_user "\nFAILURE: sbatch not responding\n"
set exit_code 1
}
eof {
wait
}
}
if {$job_id != 0} {
check_ids $job_id
cancel_job $job_id
}
if {$exit_code == 0} {
exec $bin_rm -f $file_script
send_user "\nSUCCESS\n"
}
exit $exit_code
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment