From 2d426678bde8739363ae24efd744ed6e3b10e4c0 Mon Sep 17 00:00:00 2001 From: Michal Paszta Date: Tue, 31 Dec 2019 15:00:33 +0200 Subject: [PATCH] Increase UDP test timeout to 1200s This is because the ESP8266 is now waiting for SEND OK and takes much more to complete the send_repeat, and echo_burst tests in RAAS. (but has higher pass ratio). --- TESTS/netsocket/udp/udp_tests.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TESTS/netsocket/udp/udp_tests.h b/TESTS/netsocket/udp/udp_tests.h index 9f3530c64e..890137051e 100644 --- a/TESTS/netsocket/udp/udp_tests.h +++ b/TESTS/netsocket/udp/udp_tests.h @@ -43,7 +43,7 @@ namespace udp_global { #ifdef MBED_GREENTEA_TEST_UDPSOCKET_TIMEOUT_S static const int TESTS_TIMEOUT = MBED_GREENTEA_TEST_UDPSOCKET_TIMEOUT_S; #else -static const int TESTS_TIMEOUT = 480; +static const int TESTS_TIMEOUT = (20 * 60); #endif static const int MAX_SEND_SIZE_IPV4 = 536;