From 2a3b9fa786228dadda6d7808dadd8e9a2870b169 Mon Sep 17 00:00:00 2001 From: Andrea Mattavelli Date: Thu, 15 Sep 2016 12:56:46 +0100 Subject: Check the existence of the entry point during the initialization of the POSIX runtime. If the check fails, exit with an error. (#457) --- test/regression/2016-08-12-empty-file.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/regression/2016-08-12-empty-file.c (limited to 'test') diff --git a/test/regression/2016-08-12-empty-file.c b/test/regression/2016-08-12-empty-file.c new file mode 100644 index 00000000..b9650278 --- /dev/null +++ b/test/regression/2016-08-12-empty-file.c @@ -0,0 +1,10 @@ +// RUN: %llvmgcc %s -emit-llvm -g -O0 -c -o %t.bc +// RUN: rm -rf %t.klee-out +// RUN: not %klee --output-dir=%t.klee-out %t.bc >%t1.log 2>&1 +// RUN: FileCheck -input-file=%t1.log -check-prefix=CHECK-MAIN-NOT-FOUND %s +// RUN: rm -rf %t.klee-out +// RUN: rm -rf %t1.log +// RUN: not %klee --output-dir=%t.klee-out --posix-runtime %t.bc >%t1.log 2>&1 +// RUN: FileCheck -input-file=%t1.log -check-prefix=CHECK-MAIN-NOT-FOUND %s + +// CHECK-MAIN-NOT-FOUND: 'main' function not found in module. -- cgit 1.4.1