Cellular: WISE-1570 needs greater receiving timeout to pass UDPSOCKET_ECHOTEST_NONBLOCK test

Reason for needing greater timeout could be this test's performance.
UDPSOCKET_ECHOTEST_BURST_NONBLOCK is implementing the receiving
differently and is passing with 1 second timeout.
pull/10543/head
Mirela Chirica 2019-05-08 10:43:08 +03:00
parent 42a9a7a573
commit 26facc7f9b
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ namespace {
static const int SIGNAL_SIGIO_RX = 0x1; static const int SIGNAL_SIGIO_RX = 0x1;
static const int SIGNAL_SIGIO_TX = 0x2; static const int SIGNAL_SIGIO_TX = 0x2;
static const int SIGIO_TIMEOUT = 5000; //[ms] static const int SIGIO_TIMEOUT = 5000; //[ms]
static const int WAIT2RECV_TIMEOUT = 2000; //[ms] static const int WAIT2RECV_TIMEOUT = 5000; //[ms]
static const int RETRIES = 2; static const int RETRIES = 2;
static const double EXPECTED_LOSS_RATIO = 0.0; static const double EXPECTED_LOSS_RATIO = 0.0;