diff --git a/src/main.c b/src/main.c index 42ed7fed..6d984797 100644 --- a/src/main.c +++ b/src/main.c @@ -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; } diff --git a/src/tests.c b/src/tests.c index d4ad4aed..b6b037ec 100644 --- a/src/tests.c +++ b/src/tests.c @@ -3643,9 +3643,6 @@ void sizeof_union_test() assert(compile_without_errors_warnings(true, false /*nullcheck disabled*/, source)); } -void test_fail() -{ - assert(0); -} + #endif