Increase timeout in DNS_TIMEOUTS test for ESP8266

The test floods the device with UDP requests (it skips the 100 ms delay to simulate instant timeout). ESP8266 starts responding with "busy p..." message. It needs more time to process the data and recover for subsequent tests.
pull/11601/head
Michal Paszta 2019-09-30 18:35:03 +03:00
parent c385e141e2
commit d6b77da270
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ void ASYNCHRONOUS_DNS_TIMEOUTS()
TEST_ASSERT(result_exp_timeout > 0);
// Give event queue time to finalise before destructors
ThisThread::sleep_for(2000);
ThisThread::sleep_for(12000);
nsapi_dns_call_in_set(0);
}