Skip to content
Snippets Groups Projects
Commit f1b92df9 authored by Moe Jette's avatar Moe Jette
Browse files

tweak error message check for slurm v1.3

parent d31240f0
No related branches found
No related tags found
No related merge requests found
...@@ -102,6 +102,11 @@ set job_id 0 ...@@ -102,6 +102,11 @@ set job_id 0
set matches 0 set matches 0
spawn $sbatch -o $file_out $file_in spawn $sbatch -o $file_out $file_in
expect { expect {
-re "More processors requested than permitted" {
send_user "This error was expected, no worries\n\n"
incr matches
exp_continue
}
-re "Node count specification invalid" { -re "Node count specification invalid" {
send_user "This error was expected, no worries\n\n" send_user "This error was expected, no worries\n\n"
incr matches incr matches
......
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