1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
#!/usr/bin/env expect
############################################################################
# Purpose: Stress test multiple simultaneous commands via multiple threads
############################################################################
# Copyright (C) 2002 The Regents of the University of California.
# Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
# Written by Morris Jette <jette1@llnl.gov>
# CODE-OCEC-09-009. All rights reserved.
#
# This file is part of Slurm, a resource management program.
# For details, see <https://slurm.schedmd.com/>.
# 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 file_script "./$test_name.bash"
set iterations 5
set sleep_time 1
set task_cnt 10
#
# A single slurmd can't handle a large task count without
# running out of memory and pthreads
#
if {[get_config_param "FrontendName"] ne "MISSING"} {
set task_cnt 2
}
#
# Initiate $task_cnt parallel tasks
#
for {set inx 0} {$inx < $task_cnt} {incr inx} {
spawn $bin_bash $file_script $sinfo $srun $squeue $sleep_time $iterations
set task_id($inx) $spawn_id
}
#
# Test output for successful completion message
#
set success_cnt 0
set timeout [expr $max_job_delay * $iterations * $task_cnt]
for {set inx 0} {$inx < $task_cnt} {incr inx} {
set spawn_id $task_id($inx)
expect {
"########## EXIT_CODE 0 ##########" {
incr success_cnt
}
timeout {
log_error "Timeout on task $inx"
}
eof {
wait
log_error "EOF on task $inx"
}
}
}
if {$success_cnt != $task_cnt} {
fail "Only $success_cnt of $task_cnt tests passed"
}
|