Skip to content
Snippets Groups Projects
Commit 3349e403 authored by Moe Jette's avatar Moe Jette
Browse files
parent 1123ff44
No related branches found
No related tags found
No related merge requests found
...@@ -413,7 +413,8 @@ documents those changes that are of interest to users and admins. ...@@ -413,7 +413,8 @@ documents those changes that are of interest to users and admins.
-- Fixed handling of SIGPIPE in srun. Abort job. -- Fixed handling of SIGPIPE in srun. Abort job.
-- Fix bug introduced to MVAPICH plugin preventing use of TotalView debugger. -- Fix bug introduced to MVAPICH plugin preventing use of TotalView debugger.
-- Modify slurmctld to get srun/salloc network address based upon the incoming -- Modify slurmctld to get srun/salloc network address based upon the incoming
message rather than hostname set by the user command (backport of logic in SLURM v1.3). message rather than hostname set by the user command (backport of logic in
SLURM v1.3).
* Changes in SLURM 1.2.32 * Changes in SLURM 1.2.32
========================= =========================
......
...@@ -95,7 +95,11 @@ set timeout [expr $max_job_delay + $sleep_time] ...@@ -95,7 +95,11 @@ set timeout [expr $max_job_delay + $sleep_time]
set timed_out 0 set timed_out 0
set srun_pid [spawn $srun -t1 $bin_sleep $sleep_time] set srun_pid [spawn $srun -t1 $bin_sleep $sleep_time]
expect { expect {
-re "time limit exceeded" { -re "time limit" {
set timed_out 1
exp_continue
}
-re "TIME LIMIT" {
set timed_out 1 set timed_out 1
exp_continue exp_continue
} }
...@@ -126,7 +130,11 @@ if {$timed_out == 1} { ...@@ -126,7 +130,11 @@ if {$timed_out == 1} {
set completions 0 set completions 0
set srun_pid [spawn $srun -t4 $bin_sleep $sleep_time] set srun_pid [spawn $srun -t4 $bin_sleep $sleep_time]
expect { expect {
-re "time limit exceeded" { -re "time limit" {
set completions -1
exp_continue
}
-re "TIME LIMIT" {
set completions -1 set completions -1
exp_continue exp_continue
} }
......
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