Skip to content
Snippets Groups Projects
Commit 7f6610f6 authored by Dominik Bartkiewicz's avatar Dominik Bartkiewicz Committed by Danny Auble
Browse files

Add global function to the test suite to check for the extern step.

Bug 6357
parent 971afaf2
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment