depot_autopilot.run: relax test timeout

There are still nightly tests like test-tcp_bulk_lxip on sel4 x86_64 qemu
that manage to hit the test timeout of the run script although the test was
successful. So, raise the extra time added by the run script to 30 seconds.

Ref #3411
This commit is contained in:
Martin Stein 2019-06-07 14:21:44 +02:00 committed by Christian Helmuth
parent fe5ada85cb
commit 5a59d295a4

View File

@ -890,9 +890,9 @@ while {1} {
init_previous_results
}
# determine timeout for the next timeout
set min_timeout 20
set min_timeout 30
regexp {depot_autopilot\] --- Run "(.*?)" \(max ([0-9]*?) } $output] ignore last_test_pkg min_timeout
set timeout [expr $min_timeout + 20]
set timeout [expr $min_timeout + 30]
# re-boot if the maximum number of tests per boot is set and reached
if { [expr $max_nr_of_tests_per_boot && \