Skip to content
Snippets Groups Projects
Commit 6b811196 authored by Morris Jette's avatar Morris Jette
Browse files

POE: Modify test for race condition

parent 2e68555c
No related branches found
No related tags found
No related merge requests found
......@@ -42,9 +42,7 @@ print_header $test_id
if { [test_xcpu] } {
send_user "\nWARNING: This test is incompatible with XCPU systems\n"
exit 0
}
if {[test_cray]} {
} elseif {[test_cray]} {
send_user "\nWARNING: This test is incompatible with Cray systems\n"
exit $exit_code
}
......@@ -104,7 +102,8 @@ if {$match_sig < 1} {
send_user "\nFAILURE: srun failed to properly process SIGINT\n"
set exit_code 1
}
if {$match_abort < 1} {
if {$match_abort < 1 && [test_launch_poe] == 0} {
# POE could end without "forcing job termination" message being generated
send_user "\nFAILURE: srun failed to properly process multiple SIGINT to abort\n"
set exit_code 1
}
......
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