Skip to content
Snippets Groups Projects
Commit e14c6b47 authored by jette's avatar jette
Browse files

Minor change in test due to possible timing change in step signalling

Previously a killpg was used, now a signal_container call is used and
this might result in the processes being signalled at very slightly
different times, possibly permitting a new process to start
parent 7da10e32
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ if {[test_launch_poe]} {
}
#
# Build input script file
# Build input batch file
#
exec $bin_rm -f $file_in1 $file_in2 $file_out
make_bash_script $file_in1 "
......@@ -63,9 +63,15 @@ make_bash_script $file_in1 "
$srun -t5 ./$file_in2
$bin_echo JOB_FINISH
"
#
# Build step file
# The second sleep is because with some proctrack plugins, the bash shell may
# be terminiated slighly later than the first sleep process
#
make_bash_script $file_in2 "
$bin_echo STEP_BEGIN
$bin_sleep 120
$bin_sleep 1
$bin_echo STEP_FINISH
"
......
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