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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
|
#!/usr/bin/env expect
############################################################################
# Purpose: Test hetjob: squeue
#
# Reqs: 1. Using slurmdbd accounting storage type and is up
# 2. controllers are up and running.
############################################################################
# Copyright (C) 2017 SchedMD LLC.
# Written by Isaac Hartung <ihartung@schedmd.com>
#
# 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
source ./globals_het_jobs
set file_in "test$test_id.in"
set file_out "test$test_id.out"
set job_id 0
if {[get_config_param "SchedulerType"] ne "sched/backfill"} {
skip "This test requires SchedulerType = sched/backfill"
}
if [in_fed] {
skip "This test should not be run in a federation"
}
proc sbatch {} {
global number sbatch file_in file_out bin_sleep
set matches 0
set job_id 0
set command "$sbatch -o $file_out $file_in"
spawn {*}$command
expect {
-re "Batch job submission failed" {
skip "Unable to execute test due to system configuration"
}
-re "Submitted batch job ($number)" {
incr matches
set job_id $expect_out(1,string)
}
timeout {
fail "sbatch not responding"
}
eof {
wait
}
}
if {$matches != 1} {
fail "batch submit failure"
}
return $job_id
}
proc cleanup { } {
global job_id user_name bin_rm file_in file_out
cancel_job $job_id
exec $bin_rm -f $file_in $file_out
}
#start test
make_bash_script $file_in "#SBATCH --cpus-per-task=4 --mem-per-cpu=10 --ntasks=1 -t1
#SBATCH hetjob
#SBATCH --cpus-per-task=2 --mem-per-cpu=2 --ntasks=1 -t1
#SBATCH hetjob
#SBATCH --cpus-per-task=1 --mem-per-cpu=6 --ntasks=1 -t1
$bin_sleep 10"
log_info "\n################################################################\n"
log_info "Submit hetjob and verify output from scontrol show job"
log_info "\n################################################################\n"
set job_id [sbatch]
set matches 0
set id_set 0
set id_regex "\[0-9,-\]+"
set format "jobid:.16,hetjoboffset:.16,hetjobid:.16,hetjobidset:.25"
set regex "$job_id\\s+0\\s+$job_id\\s+($id_regex)"
set header "JOBID\\s+HET_JOB_OFFSET\\s+HET_JOB_ID\\s+HET_JOB_ID_SET"
spawn $squeue -j $job_id --Format=$format
expect {
-re $header {
incr matches
exp_continue
}
-re $regex {
set id_set $expect_out(1,string)
incr matches
exp_continue
}
timeout {
fail "squeue not responding"
}
eof {
wait
}
}
if {$matches != 2 } {
fail "Problem with squeue test 1 ($matches != 2)"
} else {
log_debug "Test 1 OK"
}
set js [parse_id_set $id_set $job_id]
set j2 [lindex $js 0]
set j3 [lindex $js 1]
set matches 0
set regex "$j2\\s+1\\s+$job_id\\s+$id_set"
spawn $squeue --noheader -j $j2 --Format=$format
expect {
-re $regex {
incr matches
exp_continue
}
timeout {
fail "squeue not responding"
}
eof {
wait
}
}
if {$matches != 1 } {
fail "Problem with squeue test 2 ($matches != 1)"
} else {
log_debug "Test 2 OK"
}
set matches 0
set regex "$j3\\s+2\\s+$job_id\\s+$id_set"
spawn $squeue --noheader -j $j3 --Format=$format
expect {
-re $regex {
incr matches
exp_continue
}
timeout {
fail "squeue not responding"
}
eof {
wait
}
}
if {$matches != 1 } {
fail "Problem with squeue test 3 ($matches != 1)"
} else {
log_debug "Test 3 OK"
}
|