Skip to content

Commit

Permalink
higher timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
turleypol committed Mar 28, 2021
1 parent 1771efe commit 3edf83b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testsuite/pol/testpkgs/client/communication.inc
Expand Up @@ -36,7 +36,7 @@ endfunction
// wait for events of given types and of given client id
function waitForClient(id, types)
while (1)
var ev:=Wait_For_Event(5);
var ev:=Wait_For_Event(10);
if (!ev)
return ret_error("no signal received");
endif
Expand All @@ -50,7 +50,7 @@ endfunction
function waitForClients(types)
// wait for events of given types of any client
while (1)
var ev:=Wait_For_Event(5);
var ev:=Wait_For_Event(10);
if (!ev)
return ret_error("no signal received");
endif
Expand Down

0 comments on commit 3edf83b

Please sign in to comment.