Skip to content
Snippets Groups Projects
Commit d6017a45 authored by Christopher J. Morrone's avatar Christopher J. Morrone
Browse files

Don't run test1.83 if fewer than 3 nodes are available

parent 1519ca14
No related branches found
No related tags found
No related merge requests found
...@@ -47,6 +47,12 @@ if {[test_front_end] != 0} { ...@@ -47,6 +47,12 @@ if {[test_front_end] != 0} {
exit 0 exit 0
} }
set available [available_nodes [default_partition]]
if {$available < 3} {
send_user "\nWARNING: This test requires 3 nodes, but only $available available\n"
exit 0
}
# #
# Submit a 3 contiguous node job # Submit a 3 contiguous node job
# #
......
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