From ec3c6f37f9efd4dbe09728a99d8680f33bda0577 Mon Sep 17 00:00:00 2001 From: Mirela Chirica Date: Wed, 20 Mar 2019 14:34:11 +0200 Subject: [PATCH] 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. --- TESTS/netsocket/udp/udpsocket_echotest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 TESTS/netsocket/udp/udpsocket_echotest.cpp diff --git a/TESTS/netsocket/udp/udpsocket_echotest.cpp b/TESTS/netsocket/udp/udpsocket_echotest.cpp old mode 100644 new mode 100755 index 928164cfdf..c026c5e31d --- a/TESTS/netsocket/udp/udpsocket_echotest.cpp +++ b/TESTS/netsocket/udp/udpsocket_echotest.cpp @@ -29,7 +29,7 @@ namespace { static const int SIGNAL_SIGIO_RX = 0x1; static const int SIGNAL_SIGIO_TX = 0x2; static const int SIGIO_TIMEOUT = 5000; //[ms] -static const int WAIT2RECV_TIMEOUT = 1000; //[ms] +static const int WAIT2RECV_TIMEOUT = 2000; //[ms] static const int RETRIES = 2; static const double EXPECTED_LOSS_RATIO = 0.0;