Skip to content
Snippets Groups Projects
Commit 40627621 authored by Morris Jette's avatar Morris Jette
Browse files

POE: Fix some tests for clean POE use or on system with bad clocks

parent fa9e545f
No related branches found
No related tags found
No related merge requests found
......@@ -49,8 +49,7 @@ if {[test_front_end] != 0} {
# Delete left-over program and rebuild it
#
file delete $test_prog
exec $bin_make -f /dev/null $test_prog
exec $bin_cc -o $file_prog ${file_prog}.c
exec $bin_chmod 700 $test_prog
#
......
......@@ -145,7 +145,7 @@ if {[wait_for_file $file_out] == 0} {
}
if {$record != 3} {
send_user "\nFAILURE: Wrong record count $record\n"
send_user "\nFAILURE: Wrong record count ($record != 3)\n"
set exit_code 1
}
if {$preserved == 0} {
......
......@@ -74,7 +74,7 @@ if {$is_aprun_wrapper == 0} {
# Try to impose a job step time limit via ALPS using
# srun wrapper's --alps option
#
make bash_script $file_in "$bin_sleep $sleep_time; echo FINI"
make_bash_script $file_in "$bin_sleep $sleep_time; echo FINI"
set timeout [expr $max_job_delay + $sleep_time]
spawn $salloc -t4 $srun --alps=\"-t 1\" $file_in
expect {
......
......@@ -122,7 +122,7 @@ proc check_output { file_name } {
file delete $file_prog $file_out1 $file_out2
make_bash_script $file_prog_sh1 "$srun ./$file_prog"
make_bash_script $file_prog_sh2 "./$file_prog"
exec $bin_make -f /dev/null $file_prog
exec $bin_cc -o $file_prog ${file_prog}.c
exec $bin_chmod 700 $file_prog
#
......
......@@ -170,7 +170,7 @@ if {$job_id2 == 0} {
# Start our Moab emulator ($test_prog) to manage the job
#
exec $bin_rm -f $test_prog
exec $bin_make -f /dev/null $test_prog
exec $bin_cc -o $file_prog ${file_prog}.c
set success 0
set moab_pid [spawn $test_prog $control_addr $job_id1 $job_id2 $sched_port $is_bluegene]
expect {
......
......@@ -217,7 +217,7 @@ if {$job_id4 == 0} {
#
set timeout 60
exec $bin_rm -f $test_prog
exec $bin_make -f /dev/null $test_prog
exec $bin_cc -o $file_prog ${file_prog}.c
set success 0
set moab_pid [spawn $test_prog $auth_key $control_addr $e_port $sched_port $job_id1 $job_id2 $job_id3 $job_id4]
set master_id $spawn_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