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
7f6610f6
Commit
7f6610f6
authored
6 years ago
by
Dominik Bartkiewicz
Committed by
Danny Auble
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add global function to the test suite to check for the extern step.
Bug 6357
parent
971afaf2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
testsuite/expect/globals
+26
-0
26 additions, 0 deletions
testsuite/expect/globals
with
26 additions
and
0 deletions
testsuite/expect/globals
+
26
−
0
View file @
7f6610f6
...
@@ -4035,6 +4035,32 @@ proc get_prolog { } {
...
@@ -4035,6 +4035,32 @@ proc get_prolog { } {
return $prolog
return $prolog
}
}
proc expect_extern_step { } {
global scontrol
# If PrologFlags=contain is in slurm.conf, then an "extern" step will be
# launched on each node, so we need to check for 3 steps per
# job instead of 2.
log_user 0
set extern_step 0
set scon_pid [spawn -noecho $scontrol show config]
expect {
-re "PrologFlags\\s*=\\s*\[A-z/,\]*Contain" {
set extern_step 1
}
timeout {
log_error "scontrol show config not responding\n"
exit 1
}
eof {
wait
}
}
log_user 1
return $extern_step
}
################################################################
################################################################
#
#
# Proc: test_pack_step
# Proc: test_pack_step
...
...
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