From c97526d0fff13e098b284369e2fc40c256b268d5 Mon Sep 17 00:00:00 2001 From: Martin Nowack Date: Thu, 6 Sep 2018 11:54:25 +0100 Subject: Add testcase to run POSIX environment and main without arguments --- test/Runtime/POSIX/TestMain.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/Runtime/POSIX/TestMain.c (limited to 'test') diff --git a/test/Runtime/POSIX/TestMain.c b/test/Runtime/POSIX/TestMain.c new file mode 100644 index 00000000..c91d4e36 --- /dev/null +++ b/test/Runtime/POSIX/TestMain.c @@ -0,0 +1,23 @@ +// Run applications with the posix environment but without additional arguments argc, argv for main +// RUN: %llvmgcc -DMAIN1 %s -emit-llvm -O0 -c -g -o %t.bc +// RUN: rm -rf %t.klee-out +// RUN: %klee --output-dir=%t.klee-out --posix-runtime %t.bc | FileCheck %s -check-prefix=CHECK-MAIN1 +// RUN: %llvmgcc -DMAIN2 %s -emit-llvm -O0 -c -g -o %t.bc +// RUN: rm -rf %t.klee-out +// RUN: %klee --output-dir=%t.klee-out --posix-runtime %t.bc | FileCheck %s -check-prefix=CHECK-MAIN2 +#ifdef MAIN1 +#include +int main() { + printf("Execute main1\n"); + // CHECK-MAIN1: Execute main1 + return 0; +} +#endif +#ifdef MAIN2 +#include +int main(void) { + printf("Execute main2\n"); + // CHECK-MAIN2: Execute main2 + return 0; +} +#endif -- cgit 1.4.1