blob: 44a87f73c64f780652136754a00451bf99c61057 [file] [log] [blame]
#!/usr/bin/expect
############################################################################
# Purpose: Test of SLURM functionality
# Test of TotalView operation with slaunch, with and without bulk
# transfer.
#
# 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) 2004-2006 The Regents of the University of California.
# Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
# Written by Morris Jette <jette1@llnl.gov> and Dong Ang <dahn@llnl.gov>
# UCRL-CODE-226842.
#
# This file is part of SLURM, a resource management program.
# For details, see <http://www.llnl.gov/linux/slurm/>.
#
# 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.
#
# In addition, as a special exception, the copyright holders give permission
# to link the code of portions of this program with the OpenSSL library under
# certain conditions as described in each individual source file, and
# distribute linked combinations including the two. You must obey the GNU
# General Public License in all respects for all of the code used other than
# OpenSSL. If you modify file(s) with this exception, you may extend this
# exception to your version of the file(s), but you are not obligated to do
# so. If you do not wish to do so, delete this exception statement from your
# version. If you delete this exception statement from all source files in
# the program, then also delete it here.
#
# 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 "7.5"
set exit_code 0
set test_prog "test$test_id.prog"
print_header $test_id
#
# Test for existence of mpi compiler and totalview
#
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
}
if {[info exists totalviewcli] == 0} {
send_user "\nWARNING: totalviewcli not defined, can't perform mpi testing\n"
exit 0
}
if {[file executable $totalviewcli] == 0} {
send_user "\nWARNING: $totalviewcli does not exists\n"
exit 0
}
if {[test_front_end] != 0} {
send_user "\nWARNING: This test is incompatable with front-end systems\n"
exit 0
}
if {[test_aix] == 1} {
send_user "WARNING: Test is incompatible with AIX\n"
exit 0
}
#
# Put desired SLURM install directory at head of search path for bulk launch
# command to work (runs "slaunch" without path)
#
global env
set env(PATH) "$slurm_dir/bin:$env(PATH)"
send_user "\n $env(PATH)\n"
#
# Delete left-over program and rebuild it
#
exec $bin_rm -f $test_prog ${test_prog}.o ${test_prog}.TVD.v3breakpoints
exec $mpicc -o $test_prog ${test_prog}.c
#
# Create the slurm job allocation
#
set job_id 0
set matches 0
set no_capability 0
set timeout $max_job_delay
set salloc_pid [spawn $salloc -N1-2 -t1 $bin_bash]
set salloc_spawn_id $spawn_id
expect {
-re "Granted job allocation ($number)" {
set job_id $expect_out(1,string)
}
timeout {
if {$job_id != 0} {
cancel_job $job_id
}
slow_kill [expr 0 - $salloc_pid]
}
}
if {$job_id == 0} {
send_user "\nFAILURE: failed to create job allocation\n"
exit 1
}
# Note this appears as a single argv value to totalviewcli
set bulk "set issue_dgo false; dset TV::bulk_launch_enabled true; dset TV::bulk_launch_string {$slaunch --jobid=%J -N%N -n%N -w`awk -F. \'BEGIN {ORS=\",\"} {if (NR==%N) ORS=\"\"; print \$1}\' %t1` -l -i /dev/null %B/tvdsvr%K -callback_host %H -callback_ports %L -set_pws %P -verbosity %V -working_directory %D %F}"
set no_bulk "set issue_dgo false; dset TV::bulk_launch_enabled false"
#
# Now run totalviewcli (command line interface to TotalView)
#
send_user "======================================================================\n"
send_user "======================= Run without bulk transfer ===================\n"
send_user "======================================================================\n"
spawn $totalviewcli -verbosity info -e $no_bulk $slaunch -a --jobid $job_id -v -i /dev/null -n4 --overcommit $test_prog
expect {
-re "d1.<>" {
if {$matches == 0} {
incr matches
send "G\n"
}
if {$no_capability != 0} {
send "quit\n"
}
exp_continue
}
-re "cannot open shared object" {
send_user "\nWARNING: Set LD_LIBRARY_PATH environment variable "
send_user "to include this object's directory\n"
exp_continue
}
-re "Do you want to stop the job now?.*:" {
incr matches
send "yes\n"
exp_continue
}
-re "Attached to parallel task ($number)" {
incr matches
exp_continue
}
-re "Loaded MPI support.*" {
exec sleep 2
send "G\n"
exp_continue
}
-re "I just received msg from Rank" {
incr matches
exp_continue
}
-re "elan_init: No capability, can't continue" {
incr no_capability
exp_continue
}
-re "Process 1 has exited.*" {
incr matches
exec sleep 2
send "quit\n"
exp_continue
}
-re "Do you really wish to exit TotalView?" {
incr matches
send "yes\n"
exp_continue
}
timeout {
send_user "\nFAILURE: totalviewcli not responding\n"
set exit_code 1
}
eof {
wait
}
}
if {$no_capability != 0} {
send_user "\nWARNING: Unable to run test with present configuration\n"
exit 0
}
if {$matches != 12} {
send_user "\nFAILURE: totalviewcli operation matches $matches of 12\n"
send_user "Remove your ~/.totalview directory and try again\n"
set exit_code 1
} else {
send_user "\nSo far, so good...\n\n\n"
}
#
# Now run totalviewcli (command line interface to TotalView)
#
set matches 0
set no_capability 0
send_user "======================================================================\n"
send_user "===================== Run with bulk transfer ========================\n"
send_user "======================================================================\n"
spawn $totalviewcli -verbosity info -e $bulk $slaunch -a --jobid $job_id -i /dev/null -n4 --overcommit $test_prog
expect {
-re "d1.<>" {
if {$matches == 0} {
incr matches
send "G\n"
}
if {$no_capability != 0} {
send "quit\n"
}
exp_continue
}
-re "cannot open shared object" {
send_user "\nWARNING: Set LD_LIBRARY_PATH environment variable "
send_user "to include this object's directory\n"
exp_continue
}
-re "Do you want to stop the job now?.*:" {
incr matches
send "yes\n"
exp_continue
}
-re "Attached to parallel task ($number)" {
incr matches
exp_continue
}
-re "Loaded MPI support.*" {
exec sleep 2
send "G\n"
exp_continue
}
-re "I just received msg from Rank" {
incr matches
exp_continue
}
-re "elan_init: No capability, can't continue" {
incr no_capability
exp_continue
}
-re "Process 1 has exited.*" {
incr matches
exec sleep 2
send "quit\n"
exp_continue
}
-re "Do you really wish to exit TotalView?" {
incr matches
send "yes\n"
exp_continue
}
timeout {
send_user "\nFAILURE: totalviewcli not responding\n"
set exit_code 1
}
eof {
wait
}
}
#
# Check the results of bulk transfer test above
#
if {$no_capability != 0} {
send_user "\nWARNING: Unable to run test with present configuration\n"
} else {
if {$matches != 12} {
send_user "\nFAILURE: totalviewcli operation matches $matches of 12\n"
send_user "Remove your ~/.totalview directory and try again\n"
set exit_code 1
}
}
#
# terminate the job
#
cancel_job $job_id
set spawn_id $salloc_spawn_id
expect {
-re "Job allocation $job_id has been revoked." {
send "exit\n"
exp_continue
}
timeout {
send_user "\nFAILURE: salloc did not terminate as expected\n"
set exit_code 1
}
eof {
wait
}
}
if {$exit_code == 0} {
exec $bin_rm -f $test_prog ${test_prog}.o ${test_prog}.TVD.b3breakpoints
send_user "\nSUCCESS\n"
}
exit $exit_code