Skip to content

Commit 83c41e7

Browse files
author
Seppo Takalo
committed
Fix Greentea handler typecasting.
1 parent e423c12 commit 83c41e7

File tree

3 files changed

+3
-3
lines changed
  • features/storage/TESTS

3 files changed

+3
-3
lines changed

features/storage/TESTS/blockdevice/general_block_device/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ int main()
803803

804804

805805
Specification specification(greentea_test_setup, cases, total_num_cases,
806-
greentea_test_teardown_handler, (test_failure_handler_t)greentea_failure_handler);
806+
greentea_test_teardown_handler, default_handler);
807807

808808
return !Harness::run(specification);
809809
}

features/storage/TESTS/kvstore/general_tests_phase_1/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ int main()
865865
}
866866

867867
Specification specification(greentea_test_setup, cases, total_num_cases,
868-
greentea_test_teardown_handler, (test_failure_handler_t)greentea_failure_handler);
868+
greentea_test_teardown_handler, default_handler);
869869

870870
return !Harness::run(specification);
871871
}

features/storage/TESTS/kvstore/general_tests_phase_2/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ int main()
861861
}
862862

863863
Specification specification(greentea_test_setup, cases, total_num_cases,
864-
greentea_test_teardown_handler, (test_failure_handler_t)greentea_failure_handler);
864+
greentea_test_teardown_handler, default_handler);
865865

866866
return !Harness::run(specification);
867867
}

0 commit comments

Comments
 (0)