Skip to content
Snippets Groups Projects
Commit 2d8cbdb2 authored by Scott Jackson's avatar Scott Jackson Committed by Albert Gil
Browse files

Testsuite - Fix test19.4 using job completion event rather than reconfig

A reconfig event from a prior test can cause the event to launch
before it can be read back via strigger.

Bug 9665
parent 8ea650f3
No related branches found
No related tags found
No related merge requests found
...@@ -46,7 +46,7 @@ if {![regexp "${user}\\($number\\)" [get_config_param "SlurmUser"]] || $user eq ...@@ -46,7 +46,7 @@ if {![regexp "${user}\\($number\\)" [get_config_param "SlurmUser"]] || $user eq
# #
set cwd "[$bin_pwd]" set cwd "[$bin_pwd]"
exec $bin_rm -f $file_in $file_out exec $bin_rm -f $file_in $file_out
make_bash_script $file_in "$bin_echo RECONFIG >$cwd/$file_out" make_bash_script $file_in "$bin_echo JOB COMPLETED >$cwd/$file_out"
proc cleanup {} { proc cleanup {} {
global bin_rm file_in file_out strigger uid global bin_rm file_in file_out strigger uid
...@@ -82,53 +82,27 @@ wait_for -timeout 5 -pollinterval .1 {[get_config_param "DebugFlags"] eq "Trigge ...@@ -82,53 +82,27 @@ wait_for -timeout 5 -pollinterval .1 {[get_config_param "DebugFlags"] eq "Trigge
run_command -fail "$strigger --clear --quiet --user=$uid" run_command -fail "$strigger --clear --quiet --user=$uid"
# Create a trigger on a reconfig event # Submit a job and create a trigger on a job completion event
if {![regexp "trigger set" [run_command_output -fail "$strigger --set -v --offset=0 --reconfig --program=$cwd/$file_in"]]} { set job_id [submit_job -fail "--wrap \"$bin_sleep 60\""]
wait_for_job -fail $job_id "RUNNING"
if {![regexp "trigger set" [run_command_output -fail "$strigger --set -v --jobid=$job_id --fini --program=$cwd/$file_in"]]} {
fail "Trigger creation failure" fail "Trigger creation failure"
} }
# Verify that the trigger has been created # Verify that the trigger has been created
if {![regexp "$file_in" [run_command_output -fail "$strigger --get -v --reconfig --user=$uid"]]} { if {![regexp "$file_in" [run_command_output -fail "$strigger --get -v --jobid=$job_id --fini --user=$uid"]]} {
# TODO: Temporary variable to debug bug 9665 (remove once fixed) # TODO: Temporary variable to debug bug 9665 (remove once fixed)
set trigger_get_failed true set trigger_get_failed true
fail "Trigger get failure" fail "Trigger get failure"
} }
# #
# Try to trigger event # Cancel the job to trigger a job completion event
# #
set invalid 0 run_command -fail "$scancel $job_id"
spawn $scontrol reconfig # Triggers are only processed once every 15 seconds by default
expect { if [wait_for_file -timeout 30 $file_out] {
-re "Invalid user" { fail "Expected trigger output file ($file_out) did not appear within the expected timeframe (30s)"
set invalid 1 } elseif {![regexp "JOB COMPLETED" [run_command_output -fail "$bin_cat $file_out"]]} {
exp_continue fail "Trigger output file ($file_out) does not contain the expected contents"
}
eof {
wait
}
}
if {$invalid == 0} {
# Add delay for slurmctld to process triggers (every 15 secs)
exec sleep 15
# Plus time for cross-platform NSF delays
if {[wait_for_file $file_out] != 0} {
fail "File $file_out is missing"
} else {
set reconfig 0
spawn $bin_cat $file_out
expect {
-re "RECONFIG" {
set reconfig 1
exp_continue
}
eof {
wait
}
}
if {$reconfig == 0} {
fail "File $file_out contents are bad"
}
}
} }
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