diff options
Diffstat (limited to 'libcxx/test/support/rapid-cxx-test.hpp')
-rw-r--r-- | libcxx/test/support/rapid-cxx-test.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/support/rapid-cxx-test.hpp b/libcxx/test/support/rapid-cxx-test.hpp index eb24ac25976..bf027407a16 100644 --- a/libcxx/test/support/rapid-cxx-test.hpp +++ b/libcxx/test/support/rapid-cxx-test.hpp @@ -826,8 +826,8 @@ namespace rapid_cxx_test get_reporter().test_case_end(); } auto exit_code = get_reporter().failure_count() ? EXIT_FAILURE : EXIT_SUCCESS; - if (exit_code == EXIT_FAILURE) - get_reporter().print_summary(m_ts.name()); + if (exit_code == EXIT_FAILURE || get_reporter().unsupported_count()) + get_reporter().print_summary(m_ts.name()); return exit_code; } |