diff options
Diffstat (limited to 'src/user/app/init/tests/tests.h')
-rw-r--r-- | src/user/app/init/tests/tests.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/app/init/tests/tests.h b/src/user/app/init/tests/tests.h index 23ed1e3..39294eb 100644 --- a/src/user/app/init/tests/tests.h +++ b/src/user/app/init/tests/tests.h @@ -13,7 +13,7 @@ void test_semaphore(void); #define argify(str) str, sizeof(str) - 1 #define test_fail() do { \ printf("\033[31m" "TEST FAILED: %s:%xh\n" "\033[0m", __func__, __LINE__); \ - _syscall_exit(0); \ + exit(0); \ } while (0) #define assert(cond) if (!(cond)) test_fail(); |