Skip to content

Commit

Permalink
Don't wait for a specific packet (which may not arrive) - instead, wa…
Browse files Browse the repository at this point in the history
…it for any packet to arrive.
  • Loading branch information
adamdunkels authored and g-oikonomou committed Mar 5, 2014
1 parent 925f987 commit 38a0c86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion regression-tests/11-ipv6/17-cooja-multicast-11-hops.csc
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
<plugin_config>
<script>TIMEOUT(300000);&#xD;
&#xD;
WAIT_UNTIL(msg.equals("In: [0x00000063], TTL 54, total 97"));&#xD;
WAIT_UNTIL(msg.startsWith("In: "));&#xD;
&#xD;
log.testOK(); /* Report test success and quit */</script>
<active>true</active>
Expand Down
2 changes: 1 addition & 1 deletion regression-tests/11-ipv6/18-cooja-multicast-31-hops.csc
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@
<plugin_config>
<script>TIMEOUT(300000);&#xD;
&#xD;
WAIT_UNTIL(msg.startsWith("In: [0x00000063]"));&#xD;
WAIT_UNTIL(msg.startsWith("In: "));&#xD;
&#xD;
log.testOK(); /* Report test success and quit */</script>
<active>true</active>
Expand Down

0 comments on commit 38a0c86

Please sign in to comment.