run/nic_router foc x86_64: raise test timeout

Fixes #2908
This commit is contained in:
Martin Stein 2019-03-13 18:18:42 +01:00 committed by Christian Helmuth
parent 9438caa6a3
commit a74ae75680
1 changed files with 9 additions and 1 deletions

View File

@ -2,6 +2,14 @@
# Build components
#
proc test_timeout { } {
if {[have_spec foc] && [have_spec x86_64] && [have_include power_on/qemu]} {
return 150
} else {
return 60
}
}
proc enable_test_1 { } { return 1 }
proc enable_test_2 { } { return 1 }
proc enable_test_3 { } { return 1 }
@ -368,4 +376,4 @@ for {set i 0} {$i < $nr_of_clients} {incr i 1} {
append done_string {.*Test done.*\n}
}
run_genode_until $done_string 60
run_genode_until $done_string [test_timeout]