#!/usr/bin/env expect ############################################################################ # Purpose: Test environment variables needed by MPI. ############################################################################ # Copyright (C) 2017 SchedMD LLC. # Written by Isaac Hartung # # 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 prompt "PROMPT: " set file_in "test$test_id.bash" set file_out "test$test_id.out" set timeout 60 if {[test_front_end]} { skip "This test is incompatible with front-end systems" } if {[test_hetjob_step] == 0} { skip "Heterogeneous steps not currently supported" } set nb_nodes [get_node_cnt_in_part] if {$nb_nodes < 2} { skip "Need 2 or more nodes in default partition" } # # Build input script file # make_bash_script $file_in " $bin_env | grep SLURM_NODELIST " exec $bin_rm -f $file_out proc end_it { exit_code } { global het_job_id scancel if {$het_job_id > 0} { exec $scancel $het_job_id } if {$exit_code != 0} { fail "Test failed due to previous errors (\$exit_code = $exit_code)" } pass } set het_job_id 0 set component(0) 0 set matches 0 set index 0 set timeout $max_job_delay spawn $salloc -t2 -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" { #log_debug "Job initiated" } timeout { log_error "salloc : allocation not granted in $timeout seconds" end_it 1 } eof { wait } } if {$het_job_id == 0} { log_error "salloc failure" end_it 1 } log_debug "Collect Nodename for each job component" send "$squeue -j $het_job_id -o\"NAME=%N\" --noheader\r" expect { -re "--noheader" { exp_continue } -re "NAME=($re_word_str)" { set component($index) $expect_out(1,string) incr index exp_continue } -re "$prompt" { #break } timeout { log_error "squeue not responding" end_it 1 } } if {$index != 2} { log_error "squeue failure ($index != 2)" end_it 1 } log_info "Test environment variables needed by MPI" set matches 0 send "$srun --label --mpi=none --het-group=0,1 -l -o$file_out $file_in\r" expect { -re "$prompt" { #break } timeout { log_error "srun not responding" end_it 1 } eof { wait } } if {[wait_for_file $file_out] != 0} { log_error "srun output file not found" end_it 1 } set het_nodelist "" send "$bin_sort -d $file_out\r" expect { -re "0: SLURM_NODELIST_HET_GROUP_0=$component(0)" { incr matches exp_continue } -re "0: SLURM_NODELIST_HET_GROUP_1=$component(1)" { incr matches exp_continue } -re "1: SLURM_NODELIST_HET_GROUP_0=$component(0)" { incr matches exp_continue } -re "1: SLURM_NODELIST_HET_GROUP_1=$component(1)" { incr matches exp_continue } -re "$prompt" { #break } timeout { log_error "sort not responding" end_it 1 } eof { wait } } log_user 0 send "$bin_sort $file_out\r" expect { -re "0: SLURM_NODELIST=($re_word_str)" { set het_nodelist $expect_out(1,string) incr matches exp_continue } -re "1: SLURM_NODELIST=$het_nodelist" { incr matches exp_continue } -re "$prompt" { #break } timeout { log_error "sort not responding" end_it 1 } eof { wait } } log_user 1 if {$matches != 6} { log_error "srun failure ($matches != 6)" end_it 1 } send "exit\r" expect { timeout { log_error "srun not responding" end_it 1 } eof { wait } } log_info "Validate combined hostlist" set matches 0 spawn $scontrol show hostnames $het_nodelist expect { -re "$component(0)|$component(1)" { incr matches exp_continue } timeout { log_error "scontrol not responding" end_it 1 } } if {$matches != 2} { log_error "srun combined hostlist is bad ($matches != 2)" end_it 1 } exec $bin_rm -f $file_in $file_out end_it 0