#!/usr/bin/env expect ############################################################################ # Purpose: Test of Slurm functionality # Test scancel of individual job steps (job.step specification). # # 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 test6.9.input ############################################################################ # Copyright (C) 2002-2006 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 "6.9" set exit_code 0 set file_in "test$test_id.input" set job_id 0 print_header $test_id # # Build input script file # The "sleep 1" ensures the background tasks is step 0 and foreground tasks is step 1 # make_bash_script $file_in " $srun --mem=10 $bin_sleep $max_job_delay & $bin_sleep 1 $srun --mem=10 $bin_sleep $max_job_delay " # # Spawn sbatch job # set sbatch_pid [spawn $sbatch --output=/dev/null --error=/dev/null --mem=20 --job-name=job.$test_id -t5 $file_in] expect { -re "Submitted batch job ($number)" { set job_id $expect_out(1,string) exp_continue } timeout { send_user "\nFAILURE: srun not responding\n" slow_kill $sbatch_pid exit 1 } eof { wait } } if {$job_id == 0} { send_user "\nFAILURE: batch submit failure\n" exit 1 } if {[wait_for_job $job_id RUNNING] != 0} { send_user "\nFAILURE: error starting job $job_id\n" cancel_job $job_id exit 1 } # Wait for job steps to begin exec $bin_sleep 2 # # Kill single job steps individually # set matches 0 spawn $scancel --interactive $job_id.0 expect { -re "Cancel step_id=$job_id.0*\? " { send "y\r" incr matches exp_continue } timeout { send_user "\nFAILURE: scancel not responding\n" set exit_code 1 } eof { wait } } if {$matches != 1} { send_user "\nFAILURE: scancel with step_id failed\n" set exit_code 1 } set matches 0 spawn $scancel --interactive $job_id.1 expect { -re "Cancel step_id=$job_id.1*\? " { send "y\r" incr matches exp_continue } timeout { send_user "\nFAILURE: scancel not responding\n" set exit_code 1 } eof { wait } } if {$matches != 1} { send_user "\nFAILURE: scancel with step_id failed\n" set exit_code 1 } if {$exit_code == 0} { exec rm -f $file_in send_user "\nSUCCESS\n" } exit $exit_code