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

tweak new test

parent d409de19
No related branches found
No related tags found
No related merge requests found
......@@ -101,6 +101,15 @@ if {[wait_for_job $job_id "RUNNING"] != 0} {
}
# wait for job step to start
sleep 2
set debug 0
if {$debug} {
spawn $sstat -j $job_id
expect {
eof {
wait
}
}
}
set matches 0
spawn ./$test_prog $job_id
......@@ -123,9 +132,12 @@ expect {
}
}
if {$matches != 2} {
if {$matches < 1} {
send_user "\nFAILURE: error running slurm_job_step_stat() program\n"
set exit_code 1
} elseif {$matches != 2} {
send_user "\nWARNING: Failed to load PIDs associated with job step.\n"
send_user " This is dependent upon the ProctrackType configured.\n"
}
cancel_job $job_id
......
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