Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
445373d2
Commit
445373d2
authored
15 years ago
by
Joseph P. Donaghy
Browse files
Options
Downloads
Patches
Plain Diff
revising to use node option for verification.
parent
4eefc1c3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
testsuite/expect/test4.12
+14
-32
14 additions, 32 deletions
testsuite/expect/test4.12
with
14 additions
and
32 deletions
testsuite/expect/test4.12
+
14
−
32
View file @
445373d2
...
...
@@ -39,7 +39,8 @@ set pnumsc 0
set pnumsi 0
set aprocsc 0
set aprocsi 0
set tcpuc 0
set tacpuc 0
print_header $test_id
#
...
...
@@ -54,36 +55,22 @@ srun -N1 hostname
# Issue scontrol to find processor count
#
set timeout $max_job_delay
set sctmatches 0
spawn $sbatch $file_in
spawn $scontrol show part
spawn $scontrol show node
expect {
-re "
TotalCPU
s=($number)" {
-re "
Proc
s=($number)" {
set pnumsc $expect_out(1,string)
send_user "\nscontrol reports $pnumsc procs\n"
incr sctmatches
set tcpuc [expr $tcpuc + $pnumsc]
send_user "\nTotal CPU count is now $tcpuc procs\n"
exp_continue
}
timeout {
send_user "\nFAILURE: scontrol not responding\n"
set exit_code 1
}
eof {
wait
}
}
if {$sctmatches != 1} {
send_user "\nFAILURE: Unexpected output $sctmatches\n"
set exit_code 1
}
set scamatches 0
spawn $scontrol show node
expect {
-re "AllocProcs=($number)" {
set aprocsc $expect_out(1,string)
send_user "\nscontrol reports $aprocsc allocated procs\n"
incr scamatches
-re " AllocProcs=($number)" {
set pnumsi $expect_out(1,string)
send_user "\nscontrol reports $pnumsi procs\n"
set tacpuc [expr $tacpuc + $pnumsi]
send_user "\nAllocated CPU count is now $tacpuc procs\n"
exp_continue
}
timeout {
...
...
@@ -94,13 +81,8 @@ expect {
wait
}
}
if {$scamatches != 1} {
send_user "\nFAILURE: Unexpected output $scamatches\n"
set exit_code 1
}
set simatches 0
spawn $sinfo -o %C
expect {
-re "($number).$number.$number.($number)" {
...
...
@@ -124,14 +106,14 @@ if {$simatches != 1} {
set exit_code 1
}
if {$
pnums
c == $pnumsi} {
if {$
tcpu
c == $pnumsi} {
send_user "\nGOOD: Reported procs are a match at $pnumsc\n"
} else {
send_user "\nFAILURE: PROCS numbers not the same\n"
set exit_code 1
}
if {$
aprocs
c == $aprocsi} {
if {$
tacpu
c == $aprocsi} {
send_user "\nGOOD: Allocated Procs are a match at $aprocsc\n"
} else {
send_user "\nFAILURE: Allocated Procs not the same\n"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment