View | Details | Raw Unified | Return to ticket 1904
Collapse All | Expand All

(-)a/testsuite/expect/test11.8 (-2 / +2 lines)
Lines 117-124 set timeout [expr $max_job_delay + 60 + 60 + 60] Link Here
117
exec $bin_rm -f $file_in
117
exec $bin_rm -f $file_in
118
set file [open $file_in "w"]
118
set file [open $file_in "w"]
119
puts $file "# multi-program configuration file
119
puts $file "# multi-program configuration file
120
1,3   /bin/true
120
1,3   true
121
0,2   /bin/date
121
0,2   date
122
"
122
"
123
close $file
123
close $file
124
exec $bin_chmod 700 $file_in
124
exec $bin_chmod 700 $file_in
(-)a/testsuite/expect/test6.12 (-2 / +2 lines)
Lines 71-79 file delete $file_out $file_err Link Here
71
make_bash_script $file_in "
71
make_bash_script $file_in "
72
$srun $bin_sleep 500 &
72
$srun $bin_sleep 500 &
73
73
74
trap /bin/true SIGINT
74
trap true SIGINT
75
75
76
while /bin/true; do
76
while true; do
77
	wait
77
	wait
78
	if \[ \$? -ge 128 \]; then
78
	if \[ \$? -ge 128 \]; then
79
		echo \"INTerrupted wait, resuming\"
79
		echo \"INTerrupted wait, resuming\"
(-)a/testsuite/expect/test8.21.bash (-1 / +1 lines)
Lines 13-19 test_mode=$5 Link Here
13
delay_time=1
13
delay_time=1
14
while [ $delay_time -le 60 ]
14
while [ $delay_time -le 60 ]
15
do
15
do
16
	$srun -N1  --test-only --immediate /bin/true
16
	$srun -N1  --test-only --immediate true
17
	rc=$?
17
	rc=$?
18
	if [ $rc -eq 0 ]
18
	if [ $rc -eq 0 ]
19
	then
19
	then

Return to ticket 1904