Skip to content

Commit d3812f3

Browse files
author
Marcin Tomczyk
committed
ONME-3983 Fix the defects found in IPV4 testing against packet dropping
1 parent 0404701 commit d3812f3

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

TESTS/netsocket/tcp/tcpsocket_echotest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ using namespace utest::v1;
2626

2727
namespace {
2828
static const int SIGNAL_SIGIO = 0x1;
29-
static const int SIGIO_TIMEOUT = 5000; //[ms]
29+
static const int SIGIO_TIMEOUT = 20000; //[ms]
3030

3131
static const int BUFF_SIZE = 1200;
3232
static const int PKTS = 22;

TESTS/netsocket/tcp/tcpsocket_echotest_burst.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ using namespace utest::v1;
2626

2727
namespace {
2828
static const int SIGNAL_SIGIO = 0x1;
29-
static const int SIGIO_TIMEOUT = 5000; //[ms]
29+
static const int SIGIO_TIMEOUT = 20000; //[ms]
3030

3131
static const int BURST_CNT = 100;
3232
static const int BURST_SIZE = 1220;

TESTS/netsocket/tcp/tcpsocket_endpoint_close.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ using namespace utest::v1;
2626

2727
namespace {
2828
static const int SIGNAL_SIGIO = 0x1;
29-
static const int SIGIO_TIMEOUT = 5000; //[ms]
29+
static const int SIGIO_TIMEOUT = 20000; //[ms]
3030
}
3131

3232
static void _sigio_handler(osThreadId id)

TESTS/netsocket/tcp/tcpsocket_recv_timeout.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ using namespace utest::v1;
2626

2727
namespace {
2828
static const int SIGNAL_SIGIO = 0x1;
29-
static const int SIGIO_TIMEOUT = 5000; //[ms]
29+
static const int SIGIO_TIMEOUT = 20000; //[ms]
3030
}
3131

3232
static void _sigio_handler(osThreadId id)

TESTS/netsocket/tcp/tcpsocket_thread_per_socket_safety.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ using namespace utest::v1;
2727
namespace {
2828
static const int SIGNAL_SIGIO1 = 0x1;
2929
static const int SIGNAL_SIGIO2 = 0x2;
30-
static const int SIGIO_TIMEOUT = 5000; //[ms]
30+
static const int SIGIO_TIMEOUT = 20000; //[ms]
3131

3232
Thread thread(osPriorityNormal, tcp_global::TCP_OS_STACK_SIZE);
3333
volatile bool running = true;

0 commit comments

Comments
 (0)