From 95cdb135fc5fa244c20227ff354fb6efb16233fb Mon Sep 17 00:00:00 2001 From: Alex Groce Date: Fri, 27 Jul 2018 21:11:11 -0700 Subject: [PATCH] proper return value for LLVM run --- src/include/deepstate/DeepState.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/deepstate/DeepState.h b/src/include/deepstate/DeepState.h index f3bb41b..5721e10 100644 --- a/src/include/deepstate/DeepState.h +++ b/src/include/deepstate/DeepState.h @@ -492,7 +492,7 @@ static void DeepState_RunTest(struct DeepState_TestInfo *test) { } /* Run a test case, but in libFuzzer, so not inside a fork. */ -static void DeepState_RunTestLLVM(struct DeepState_TestInfo *test) { +static int DeepState_RunTestLLVM(struct DeepState_TestInfo *test) { /* Run the test. */ if (!setjmp(DeepState_ReturnToRun)) { /* Convert uncaught C++ exceptions into a test failure. */