Skip to content

DNS tests modification for ESP8266-specific scenario #11601

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TESTS/netsocket/dns/asynchronous_dns_timeouts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
2 changes: 1 addition & 1 deletion TESTS/netsocket/dns/dns_tests.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ namespace dns_global {
#ifdef MBED_GREENTEA_TEST_DNSSOCKET_TIMEOUT_S
static const int TESTS_TIMEOUT = MBED_GREENTEA_TEST_DNSSOCKET_TIMEOUT_S;
#else
static const int TESTS_TIMEOUT = 10 * 60;
static const int TESTS_TIMEOUT = 14 * 60;
#endif
}

Expand Down