1
0
mirror of synced 2024-11-28 01:20:51 +01:00

tests: Run tests only once

This commit is contained in:
WerWolv 2022-01-29 21:49:12 +01:00
parent 3f5b258629
commit 362413dbe7

View File

@ -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!");