diff options
Diffstat (limited to 'checks')
-rw-r--r-- | checks/tests.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/checks/tests.cpp b/checks/tests.cpp index 2692d9e57..0a59f19b9 100644 --- a/checks/tests.cpp +++ b/checks/tests.cpp @@ -109,6 +109,12 @@ size_t run_tests_bb(std::istream& src, } } + if(fixed_name != "" && (algo_count > 0 || algo_fail > 0)) + { + test_report(fixed_name, algo_count, algo_fail); + test_count += algo_count; + test_fails += algo_fail; + } test_report(name_key, test_count, test_fails); return test_fails; |