| #!/usr/bin/expect |
| ############################################################################ |
| # Purpose: Test of SLURM functionality |
| # Test of Blue Gene specific srun command line options |
| # |
| # 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. |
| # |
| # Note: This script generates and then deletes files in the working directory |
| # named test8.1.input |
| ############################################################################ |
| # Copyright (C) 2004 The Regents of the University of California. |
| # Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). |
| # Written by Morris Jette <jette1@llnl.gov> |
| # UCRL-CODE-217948. |
| # |
| # This file is part of SLURM, a resource management program. |
| # For details, see <http://www.llnl.gov/linux/slurm/>. |
| # |
| # 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 "8.1" |
| set exit_code 0 |
| set file_in "test$test_id.input" |
| set job_id 0 |
| set connection "TORUS" |
| set conn_letter "Tt" |
| set geometry "1x1x1" |
| set num_nodes 512-512 |
| set cycle_count 2 |
| |
| print_header $test_id |
| |
| if {[test_bluegene] == 0} { |
| send_user "\nWARNING: This test is only compatable with bluegene systems\n" |
| exit $exit_code |
| } |
| |
| # |
| # Delete left-over input script files |
| # Build input script file |
| # |
| exec $bin_rm -f $file_in |
| exec echo "#!$bin_bash" >$file_in |
| exec echo "$bin_sleep 1 &" >>$file_in |
| exec $bin_chmod 700 $file_in |
| |
| # |
| # Submit a slurm job using various srun options for blue gene |
| # |
| set timeout $max_job_delay |
| |
| for {set inx 0} {$inx < $cycle_count} {incr inx} { |
| spawn $srun -N$num_nodes --geometry=$geometry --no-rotate --conn-type=$connection --batch --output=/dev/null --error=/dev/null $file_in |
| expect { |
| -re "jobid ($number) submitted" { |
| set job_id $expect_out(1,string) |
| set inx $cycle_count |
| exp_continue |
| } |
| -re "node configuration" { |
| set connection "MESH" |
| set conn_letter "Mm" |
| exp_continue |
| } |
| timeout { |
| send_user "\nFAILURE: srun not responding\n" |
| kill_srun |
| exit 1 |
| } |
| eof { |
| wait |
| } |
| } |
| } |
| if {$job_id == 0} { |
| send_user "\nFAILURE: batch submit failure\n" |
| exit 1 |
| } |
| |
| # |
| # Confirm parameters passed into SLURM |
| # |
| set matches 0 |
| spawn $scontrol show job $job_id |
| expect { |
| -re "Connection=\[$conn_letter\]" { |
| incr matches |
| exp_continue |
| } |
| -re "Rotate=\[Nn\]" { |
| incr matches |
| exp_continue |
| } |
| -re "Geometry=$geometry" { |
| incr matches |
| exp_continue |
| } |
| timeout { |
| send_user "\nFAILURE: scontrol not responding\n" |
| set exit_code 1 |
| } |
| eof { |
| wait |
| } |
| } |
| |
| if {$matches != 3} { |
| send_user "got $matches\n" |
| send_user "\nFAILURE: Blue Gene option processing error\n" |
| set exit_code 1 |
| } |
| |
| # |
| # Kill the job, running it is unimportant |
| # |
| exec $scancel --quiet $job_id |
| |
| # |
| # Run a second job |
| # |
| set job_id 0 |
| set timeout $max_job_delay |
| spawn $srun -N$num_nodes --geometry=$geometry --no-rotate --conn-type=$connection --batch --output=/dev/null --error=/dev/null $file_in |
| expect { |
| -re "jobid ($number) submitted" { |
| set job_id $expect_out(1,string) |
| exp_continue |
| } |
| timeout { |
| send_user "\nFAILURE: srun not responding\n" |
| kill_srun |
| exit 1 |
| } |
| eof { |
| wait |
| } |
| } |
| |
| if {$job_id == 0} { |
| send_user "\nFAILURE: batch submit failure\n" |
| exit 1 |
| } |
| |
| # |
| # Confirm parameters passed into SLURM |
| # |
| set matches 0 |
| spawn $scontrol show job $job_id |
| expect { |
| -re "Connection=\[$conn_letter\]" { |
| incr matches |
| exp_continue |
| } |
| -re "Rotate=\[Nn\]" { |
| incr matches |
| exp_continue |
| } |
| -re "Geometry=$geometry" { |
| incr matches |
| exp_continue |
| } |
| timeout { |
| send_user "\nFAILURE: scontrol not responding\n" |
| set exit_code 1 |
| } |
| eof { |
| wait |
| } |
| } |
| |
| if {$matches != 3} { |
| send_user "\nFAILURE: Blue Gene option processing error\n" |
| set exit_code 1 |
| } |
| |
| # |
| # Kill the job, running it is unimportant |
| # |
| exec $scancel --quiet $job_id |
| |
| if {$exit_code == 0} { |
| exec $bin_rm -f $file_in |
| send_user "\nSUCCESS\n" |
| } |
| exit $exit_code |
| |