mirror of https://github.com/ARMmbed/mbed-os.git
Continue Socket and WiFi tests even on test failure.
Purpose is to run full set of testcases on each run. Testcases should contain proper cleanup handlers so that they are independent.pull/8505/head
parent
ba23fef90b
commit
66a2101006
|
|
@ -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()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue