nic_router.run: raise timeouts for sel4+qemu

This commit is contained in:
Martin Stein 2017-11-21 16:20:55 +01:00 committed by Christian Helmuth
parent c6718677b2
commit d37f32fb21
2 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ append config {
<start name="nic_router" caps="200" priority="-1">
<resource name="RAM" quantum="10M"/>
<provides><service name="Nic"/></provides>
<config rtt_sec="6" verbose="no">
<config rtt_sec="12" verbose="no">
<policy label_prefix="udp_client_1" domain="udp_client_1" />
<policy label_prefix="http_client_3" domain="http_client_3" />
@ -157,4 +157,4 @@ install_config $config
build_boot_image $boot_modules
run_genode_until {.*Test done.*\n.*Test done.*\n.*Test done.*\n.*Test done.*\n.*Test done.*\n.*Test done.*\n} 120
run_genode_until {.*Test done.*\n.*Test done.*\n.*Test done.*\n.*Test done.*\n.*Test done.*\n.*Test done.*\n} 240

View File

@ -39,7 +39,7 @@ void Libc::Component::construct(Libc::Env &env)
{
/* wait a while for the server to come up */
Timer::Connection timer(env);
timer.msleep(3000);
timer.msleep(6000);
/* create socket */
int s = socket(AF_INET, SOCK_DGRAM, 0 );