From 26710e52a1a7e9bc9a5577ea43b9b3c310ab923b Mon Sep 17 00:00:00 2001 From: Vasily Levchenko Date: Fri, 18 Nov 2016 12:27:13 +0300 Subject: [PATCH] use exit(3) in unit tests --- backend.native/tests/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.native/tests/main.c b/backend.native/tests/main.c index 56e8a363dbb..8b04cdcb4ca 100644 --- a/backend.native/tests/main.c +++ b/backend.native/tests/main.c @@ -24,7 +24,7 @@ kotlinNativeMain() { main((void *)0); return 0; #else - return run_test(); + return exit(run_test()); #endif }