rpl-classic root-loss test: give more time to recover now with less aggressive link-stats update

This commit is contained in:
Simon Duquennoy 2017-06-27 19:11:09 +02:00
parent dd85a89fbd
commit dd5cd8ff37
1 changed files with 2 additions and 2 deletions

View File

@ -289,9 +289,9 @@ lostMsgs = 0;

// we check that we got up to at least message 62 and
// (the simulation is 4000000ms = 66 minutes long)
// that we did not lose anything since 45
// that we did not lose anything since 55
// (the sink is back at 2000000ms = 33 minutes)
TIMEOUT(4000000, if(lastMsg >= 62 && lastMissed <= 45) { log.testOK(); } );
TIMEOUT(4000000, if(lastMsg >= 62 && lastMissed <= 55) { log.testOK(); } );

lastMsg = -1;
lastMissed = -1;