From a9d4660aaed1928e7ce381e59f0a3659a5f227d7 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Tue, 30 Apr 2024 12:32:45 +0200 Subject: [PATCH] return the amount of tests failed after them --- test/test.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.hpp b/test/test.hpp index e911b69..e63c875 100644 --- a/test/test.hpp +++ b/test/test.hpp @@ -21,7 +21,7 @@ << (tests_total - tests_failed) << "/" << tests_total\ << RESET\ << "\n";\ - return 0;\ + return tests_failed;\ } #define assert(condition, message) \