#!/usr/bin/env expect ############################################################################ # Purpose: Test of Slurm functionality # Test of contiguous option with multiple nodes (--contiguous option). # Also see test1.14. # # 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. # # NOTE: This assumes node names are of the form , where # the value of indicates the nodes relative location. # Change tha node name parsing logic as needed for other formats. ############################################################################ # Copyright (C) 2002-2007 The Regents of the University of California. # Copyright (C) 2008-2010 Lawrence Livermore National Security. # 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.83" set exit_code 0 print_header $test_id if {[test_front_end]} { send_user "\nWARNING: This test is incompatible with front-end systems\n" exit 0 } elseif {[test_topology]} { send_user "\nWARNING: This test is incompatible topology configured systems\n" exit 0 } set available [available_nodes $partition ""] if {$available < 3} { send_user "\nWARNING: This test requires 3 nodes, " send_user "but only $available available\n" exit 0 } if {[string length $partition] == 0} { set partition [default_partition] } # # Submit a 3 contiguous node job # set host_0_name "" set host_1_name "" set host_2_name "" set host_0_num 0 set host_1_num 0 set host_2_num 0 set timeout $max_job_delay set srun_pid [spawn $srun -N3-3 -p $partition --contiguous -l -t1 $bin_printenv SLURMD_NODENAME] expect { -re "Required node not available|Node count specification invalid|configuration not available" { send_user "\nWARNING: can't test srun task distribution\n" slow_kill $srun_pid exit $exit_code } -re "($number): *($alpha_numeric_under)" { set task_id $expect_out(1,string) if {$task_id == 0} { set host_0_name $expect_out(2,string) } if {$task_id == 1} { set host_1_name $expect_out(2,string) } if {$task_id == 2} { set host_2_name $expect_out(2,string) } exp_continue } timeout { send_user "\nFAILURE: srun not responding\n" send_user "This may not be a real failure if the system " send_user "lacks three _contiguous_ nodes\n" slow_kill $srun_pid exit 1 } eof { wait } } if {[string compare $host_0_name ""] == 0} { send_user "\nFAILURE: Did not get hostname of task 0\n" exit 1 } if {[string compare $host_1_name ""] == 0} { send_user "\nFAILURE: Did not get hostname of task 1\n" exit 1 } if {[string compare $host_2_name ""] == 0} { send_user "\nFAILURE: Did not get hostname of task 2\n" exit 1 } lappend check_hosts_list $host_0_name $host_1_name $host_2_name set exit_code [check_hosts_contiguous $partition $check_hosts_list] if {$exit_code == 0} { send_user "\nSUCCESS\n" } exit $exit_code