Don't wait for a specific packet (which may not arrive) - instead, wait for any packet to arrive.
This commit is contained in:
parent
925f98728f
commit
38a0c867f2
|
@ -352,7 +352,7 @@
|
|||
<plugin_config>
|
||||
<script>TIMEOUT(300000);
|
||||

|
||||
WAIT_UNTIL(msg.equals("In: [0x00000063], TTL 54, total 97"));
|
||||
WAIT_UNTIL(msg.startsWith("In: "));
|
||||

|
||||
log.testOK(); /* Report test success and quit */</script>
|
||||
<active>true</active>
|
||||
|
|
|
@ -692,7 +692,7 @@
|
|||
<plugin_config>
|
||||
<script>TIMEOUT(300000);
|
||||

|
||||
WAIT_UNTIL(msg.startsWith("In: [0x00000063]"));
|
||||
WAIT_UNTIL(msg.startsWith("In: "));
|
||||

|
||||
log.testOK(); /* Report test success and quit */</script>
|
||||
<active>true</active>
|
||||
|
|
Loading…
Reference in a new issue