Merge pull request #8505 from SeppoTakalo/continue_socket_tests

Continue Socket and WiFi tests even on test failure.
pull/8529/head
Martin Kojtal 2018-10-24 09:40:22 +01:00 committed by GitHub
commit 5bed419dd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -181,7 +181,7 @@ Case cases[] = {
Case("SYNCHRONOUS_DNS_INVALID", SYNCHRONOUS_DNS_INVALID),
};
Specification specification(test_setup, cases);
Specification specification(test_setup, cases, greentea_continue_handlers);
int main()
{

View File

@ -151,7 +151,7 @@ Case cases[] = {
#endif
};
Specification specification(greentea_setup, cases, greentea_teardown);
Specification specification(greentea_setup, cases, greentea_teardown, greentea_continue_handlers);
int main()
{

View File

@ -104,7 +104,7 @@ Case cases[] = {
#endif
};
Specification specification(greentea_setup, cases, greentea_teardown);
Specification specification(greentea_setup, cases, greentea_teardown, greentea_continue_handlers);
int main()
{

View File

@ -90,7 +90,7 @@ Case cases[] = {
#endif
};
Specification specification(test_setup, cases);
Specification specification(test_setup, cases, greentea_continue_handlers);
// Entry point into the tests
int main()