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

Modify test for Bluegene system

parent 0341a1a9
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,7 @@ if {[test_launch_poe]} { ...@@ -46,6 +46,7 @@ if {[test_launch_poe]} {
} else { } else {
set step_id 0 set step_id 0
} }
set is_bluegene [test_bluegene]
# #
# Build input script file # Build input script file
...@@ -215,8 +216,14 @@ expect { ...@@ -215,8 +216,14 @@ expect {
} }
} }
if {$matches != 4} { if {$is_bluegene == 0} {
send_user "\nFAILURE: scontrol failed to find matching job ($matches != 4)\n" set match_target 4
} else {
# No CPU_IDs on Bluegene
set match_target 2
}
if {$matches != $match_target} {
send_user "\nFAILURE: scontrol failed to find matching job ($matches != $match_target)\n"
set exit_code 1 set exit_code 1
} }
...@@ -271,8 +278,14 @@ expect { ...@@ -271,8 +278,14 @@ expect {
} }
} }
if {$matches != 6} { if {$is_bluegene == 0} {
send_user "\nFAILURE: scontrol failed to find matching job ($matches != 6)\n" set match_target 6
} else {
# No CPU_IDs on Bluegene
set match_target 4
}
if {$matches != $match_target} {
send_user "\nFAILURE: scontrol failed to find matching job ($matches != $match_target)\n"
set exit_code 1 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