From 937e1ba861aa34554f512e1f6d0b493d89b883fc Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 31 Jan 2019 09:56:54 +0100 Subject: executor: fix do_sandbox_none on akaros and test do_sandbox_none must not exit, it needs to return. --- executor/common_test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor/common_test.h') diff --git a/executor/common_test.h b/executor/common_test.h index e0390eb68..9e3dcd6ff 100644 --- a/executor/common_test.h +++ b/executor/common_test.h @@ -86,6 +86,6 @@ static void loop(); static int do_sandbox_none(void) { loop(); - doexit(0); + return 0; } #endif -- cgit mrf-deployment