Skip to content

Commit b9eaac4

Browse files
author
Seppo Takalo
committed
Fix Greentea handler typecasting.
1 parent ad3647c commit b9eaac4

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
@@ -809,7 +809,7 @@ int main()
809809

810810

811811
Specification specification(greentea_test_setup, cases, total_num_cases,
812-
greentea_test_teardown_handler, (test_failure_handler_t)greentea_failure_handler);
812+
greentea_test_teardown_handler, default_handler);
813813

814814
return !Harness::run(specification);
815815
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ int main()
873873
}
874874

875875
Specification specification(greentea_test_setup, cases, total_num_cases,
876-
greentea_test_teardown_handler, (test_failure_handler_t)greentea_failure_handler);
876+
greentea_test_teardown_handler, default_handler);
877877

878878
return !Harness::run(specification);
879879
}

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)