#!/usr/bin/env expect ############################################################################ # Purpose: Test of Slurm functionality # Validates that sgather -p option preserves file state. ############################################################################ # Copyright (C) 2011-2013 SchedMD LLC # Written by Nathan Yee # # 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 job_id 0 set hostname "" set file_in "test${test_id}.in" set file_out "test${test_id}.out" set sgather_tmp "/tmp/test${test_id}" set sgather_out "test${test_id}_sgather.out" set exit_code 0 if {[file executable $sgather] == 0} { skip "$sgather does not exist" } if {[test_front_end] != 0} { skip "This test is incompatible with front-end systems" } if {[test_multiple_slurmd] != 0} { skip "This test is incompatible with multiple slurmd systems" } if {[slurmd_user_root] == 0} { skip "This test is incompatible with SlurmdUser != root" } # # Remove any vestigial files # exec $bin_rm -f $file_in $file_out # Set env PATH to slurm dir set env(PATH) $slurm_dir/bin:$env(PATH) make_bash_script $file_in " env | grep SLURM_NNODES $bin_rm -f ${sgather_out}\* $srun $bin_cp -f $sgather $sgather_tmp $srun touch -t01020304 $sgather_tmp $srun ls -l $sgather_tmp $sgather -p $sgather_tmp $sgather_out ls -l ${sgather_out}\* $bin_rm -f ${sgather_out}\* $srun ls -l $sgather_tmp $srun $bin_rm -f $sgather_tmp exit 0 " spawn $sbatch -N1-2 -o $file_out -t2 $file_in expect { -re "Submitted batch job ($number)" { set job_id $expect_out(1,string) exp_continue } timeout { log_error "sbatch is not responding" set exit_code 1 } eof { wait } } if {$job_id == 0} { fail "Batch job was not submitted" } if {[wait_for_job $job_id "DONE"] != 0} { log_error "Error waiting for job $job_id to complete" cancel_job $job_id set exit_code 1 } set matches 0 set node_cnt 99 if {[wait_for_file $file_out] == 0} { spawn $bin_cat $file_out expect { -re "SLURM_NNODES=($number)" { set node_cnt $expect_out(1,string) exp_continue } -re " Jan +2 " { incr matches exp_continue } -re "No such file or directory" { log_debug "Error is expected. No worries" incr rm_cnt exp_continue } eof { wait } } } if {$matches != [expr $node_cnt * 2]} { fail "Failed to preserve file time ($matches != [expr $node_cnt * 2])" } if {$exit_code == 0} { exec $bin_rm -f $file_in $file_out } else { fail "Test failed due to previous errors (\$exit_code = $exit_code)" }