Fix Greentea handler typecasting.

pull/11987/head
Seppo Takalo 2019-11-27 15:25:49 +02:00
parent ad3647c191
commit b9eaac4da0
3 changed files with 3 additions and 3 deletions

View File

@ -809,7 +809,7 @@ int main()
Specification specification(greentea_test_setup, cases, total_num_cases,
greentea_test_teardown_handler, (test_failure_handler_t)greentea_failure_handler);
greentea_test_teardown_handler, default_handler);
return !Harness::run(specification);
}

View File

@ -873,7 +873,7 @@ int main()
}
Specification specification(greentea_test_setup, cases, total_num_cases,
greentea_test_teardown_handler, (test_failure_handler_t)greentea_failure_handler);
greentea_test_teardown_handler, default_handler);
return !Harness::run(specification);
}

View File

@ -861,7 +861,7 @@ int main()
}
Specification specification(greentea_test_setup, cases, total_num_cases,
greentea_test_teardown_handler, (test_failure_handler_t)greentea_failure_handler);
greentea_test_teardown_handler, default_handler);
return !Harness::run(specification);
}