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).
pull/13164/head
Michal Paszta 2019-12-31 15:00:33 +02:00 committed by Chun-Chieh Li
parent 5a163b14bd
commit 2d426678bd
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ namespace udp_global {
#ifdef MBED_GREENTEA_TEST_UDPSOCKET_TIMEOUT_S #ifdef MBED_GREENTEA_TEST_UDPSOCKET_TIMEOUT_S
static const int TESTS_TIMEOUT = MBED_GREENTEA_TEST_UDPSOCKET_TIMEOUT_S; static const int TESTS_TIMEOUT = MBED_GREENTEA_TEST_UDPSOCKET_TIMEOUT_S;
#else #else
static const int TESTS_TIMEOUT = 480; static const int TESTS_TIMEOUT = (20 * 60);
#endif #endif
static const int MAX_SEND_SIZE_IPV4 = 536; static const int MAX_SEND_SIZE_IPV4 = 536;