From 362413dbe7cb5a9395c82097c96560c477a98dcf Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sat, 29 Jan 2022 21:49:12 +0100 Subject: [PATCH] tests: Run tests only once --- tests/common/source/main.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tests/common/source/main.cpp b/tests/common/source/main.cpp index 66e0e4512..1b2725b5a 100644 --- a/tests/common/source/main.cpp +++ b/tests/common/source/main.cpp @@ -38,13 +38,7 @@ int test(int argc, char **argv) { } int main(int argc, char **argv) { - int result = EXIT_SUCCESS; - - for (u32 i = 0; i < 16; i++) { - result = test(argc, argv); - if (result != EXIT_SUCCESS) - break; - } + int result = test(argc, argv); if (result == EXIT_SUCCESS) hex::log::info("Success!");