#!/usr/bin/env expect ############################################################################ # Purpose: Test of Slurm functionality # Test of MPICH2 task spawn logic # # Output: "TEST: #.#" followed by "SUCCESS" if test was successful, OR # "WARNING: ..." with an explanation of why the test can't be made, OR # "FAILURE: ..." otherwise with an explanation of the failure, OR # anything else indicates a failure mode that must be investigated. ############################################################################ # Copyright (C) 2002 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 test_id "1.94" set exit_code 0 set file_in "test$test_id.input" set file_out "test$test_id.output" set file_err "test$test_id.error" set master_prog "test$test_id.master" set slave_prog "test$test_id.slave" set job_id 0 print_header $test_id # # Test for existence of mpi compiler # if {[info exists mpicc] == 0} { send_user "\nWARNING: mpicc not defined, can't perform mpi testing\n" exit 0 } if {[file executable $mpicc] == 0} { send_user "\nWARNING: $mpicc does not exists\n" exit 0 } # # Test is only works with mpi/pmi2 plugin. # set invalid 1 log_user 0 spawn $scontrol show config expect { -re "pmi2" { set invalid 0 exp_continue } timeout { send_user "\nFAILURE: scontrol not responding\n" set exit_code 1 } eof { wait } } log_user 1 if {$invalid == 1} { send_user "\nWARNING: test compatible only with MpiDefault=pmi2\n" exit $exit_code } # # Delete left-over program and rebuild it # exec $bin_rm -f $file_in $file_out $file_err exec $bin_rm -f $master_prog ${master_prog}.o exec $bin_rm -f $slave_prog ${slave_prog}.o exec $mpicc -o $master_prog ${master_prog}.c exec $mpicc -o $slave_prog ${slave_prog}.c # Delete left-over stdout/err files file delete $file_out $file_err # # Build input script file # make_bash_script $file_in " $srun -n1 --mem=0 $master_prog $slave_prog " # # Spawn an sbatch job that uses stdout/err and confirm their contents # set timeout $max_job_delay set no_start 0 set sbatch_pid [spawn $sbatch -n4 --mem=0 --output=$file_out --error=$file_err -t1 $file_in] expect { -re "Submitted batch job ($number)" { set job_id $expect_out(1,string) exp_continue } -re "Batch job submission failed" { set no_start 1 exp_continue } -re "Unable to contact" { send_user "\nFAILURE: slurm appears to be down\n" exit 1 } timeout { send_user "\nFAILURE: srun not responding\n" slow_kill $sbatch_pid set exit_code 1 } eof { wait } } if {$no_start != 0} { send_user "\nWARNING: partition too small for test\n" if {$job_id != 0} { cancel_job $job_id } exit 0 } if {$job_id == 0} { send_user "\nFAILURE: batch submit failure\n" exit 1 } # # Wait for job to complete # if {[wait_for_job $job_id "DONE"] != 0} { send_user "\nFAILURE: waiting for job to complete\n" set exit_code 1 } # # Check for desired output in stdout # set expected_msg 4 set expected_sum 12 if {[wait_for_file $file_out] == 0} { set complete 0 set matches 0 set rank_sum 0 spawn $bin_cat $file_out expect { -re "Rank.($number). on $alpha_numeric_under just received msg from Rank ($number)" { incr rank_sum $expect_out(1,string) incr rank_sum $expect_out(2,string) incr matches exp_continue } eof { wait } } if {$matches == 0} { send_user "\nFAILURE: No MPI communications occurred\n" send_user " The version of MPI you are using may be incompatible " send_user "with the configured switch\n" send_user " Core files may be present from failed MPI tasks\n\n" set exit_code 1 } elseif {$matches != $expected_msg} { send_user "\nFAILURE: unexpected output ($matches of $expected_msg)\n" set exit_code 1 } elseif {$rank_sum != $expected_sum} { send_user "\nFAILURE: Invalid rank values ($rank_sum != $expected_sum)\n" set exit_code 1 } } else { set exit_code 1 } if {$exit_code == 0} { exec $bin_rm -f $file_in $file_out $file_err exec $bin_rm -f $master_prog ${master_prog}.o exec $bin_rm -f $slave_prog ${slave_prog}.o send_user "\nSUCCESS\n" } else { set matches 0 spawn head $file_err expect { -re "Error creating CQ" { incr matches exp_continue } eof { wait } } if {$matches != 0} { send_user "WARNING: If using MVAPICH then\n" send_user " Configure \"PropagateResourceLimitsExcept=MEMLOCK\"\n" send_user " Also start slurmd with \"ulimit -l unlimited\"\n" } else { send_user "Check contents of $file_err\n" } } exit $exit_code