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/12157/head
Michal Paszta 2019-12-31 15:00:33 +02:00
parent d23d55c24a
commit 6dfa2d78ad
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ static const int TESTS_TIMEOUT = MBED_GREENTEA_TEST_UDPSOCKET_TIMEOUT_S;
#if MBED_CONF_TARGET_NETWORK_DEFAULT_INTERFACE_TYPE == MESH && MBED_CONF_NSAPI_DEFAULT_MESH_TYPE == WISUN
static const int TESTS_TIMEOUT = (25 * 60);
#else
static const int TESTS_TIMEOUT = (10 * 60);
static const int TESTS_TIMEOUT = (20 * 60);
#endif
#endif