mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #8505 from SeppoTakalo/continue_socket_tests
Continue Socket and WiFi tests even on test failure.pull/8529/head
commit
5bed419dd8
|
@ -181,7 +181,7 @@ Case cases[] = {
|
||||||
Case("SYNCHRONOUS_DNS_INVALID", SYNCHRONOUS_DNS_INVALID),
|
Case("SYNCHRONOUS_DNS_INVALID", SYNCHRONOUS_DNS_INVALID),
|
||||||
};
|
};
|
||||||
|
|
||||||
Specification specification(test_setup, cases);
|
Specification specification(test_setup, cases, greentea_continue_handlers);
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
|
|
|
@ -151,7 +151,7 @@ Case cases[] = {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
Specification specification(greentea_setup, cases, greentea_teardown);
|
Specification specification(greentea_setup, cases, greentea_teardown, greentea_continue_handlers);
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
|
|
|
@ -104,7 +104,7 @@ Case cases[] = {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
Specification specification(greentea_setup, cases, greentea_teardown);
|
Specification specification(greentea_setup, cases, greentea_teardown, greentea_continue_handlers);
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
|
|
|
@ -90,7 +90,7 @@ Case cases[] = {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
Specification specification(test_setup, cases);
|
Specification specification(test_setup, cases, greentea_continue_handlers);
|
||||||
|
|
||||||
// Entry point into the tests
|
// Entry point into the tests
|
||||||
int main()
|
int main()
|
||||||
|
|
Loading…
Reference in New Issue