Skip to content

Commit

Permalink
good build
Browse files Browse the repository at this point in the history
  • Loading branch information
thradams committed Mar 7, 2024
1 parent f2d53a6 commit 5a5444f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ int main(int argc, char** argv)

test_main();
printf("%d tests failed, %d tests passed\n", g_unit_test_error_count, g_unit_test_success_count);
printf("%d expected to fail - waiting fixes\n", CURRENT_NUMBER_OF_FAILING_TEST);

return g_unit_test_error_count > CURRENT_NUMBER_OF_FAILING_TEST ? EXIT_FAILURE : EXIT_SUCCESS;
}
Expand Down
5 changes: 1 addition & 4 deletions src/tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -3643,9 +3643,6 @@ void sizeof_union_test()
assert(compile_without_errors_warnings(true, false /*nullcheck disabled*/, source));
}

void test_fail()
{
assert(0);
}

#endif

0 comments on commit 5a5444f

Please sign in to comment.