Home
last modified time | relevance | path

Searched refs:failed (Results 1 – 3 of 3) sorted by relevance

/hal_rpi_pico-latest/test/pico_float_test/
Dpico_float_test_hazard3.c174 int failed = 0; in run_tests() local
180 ++failed; in run_tests()
183 printf("Passed: %d / %d\n", n_tests - failed, n_tests); in run_tests()
184 return failed; in run_tests()
189 int failed = 0; in main() local
192 failed += run_tests(add_directed_tests, count_of(add_directed_tests), "+", __addsf3); in main()
194 failed += run_tests(mul_directed_tests, count_of(mul_directed_tests), "*", __mulsf3); in main()
195 if (failed) { in main()
196 printf("Skipping random tests due to %d test failures\n", failed); in main()
200 failed += run_tests(add_random_tests, N_RANDOM_TESTS, "+", __addsf3); in main()
[all …]
/hal_rpi_pico-latest/test/hardware_sync_spin_lock_test/
Dhardware_sync_spin_lock_test.c205 uint failed = 0; in main() local
219 ++failed; in main()
222 if (failed == 0u) { in main()
226 printf("%u tests failed. Review log for details.\n", failed); in main()
/hal_rpi_pico-latest/test/pico_divider_test/
Dpico_divider_nesting_test.c15 volatile bool failed; variable
19 #define FAILED() ({ failed = true; })
245 if (failed) { in test_nesting()