diff options
Diffstat (limited to 'test/Feature/EntryPoint.c')
-rw-r--r-- | test/Feature/EntryPoint.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Feature/EntryPoint.c b/test/Feature/EntryPoint.c new file mode 100644 index 00000000..2b6a2c70 --- /dev/null +++ b/test/Feature/EntryPoint.c @@ -0,0 +1,11 @@ +// RUN: %llvmgcc -emit-llvm -g -c %s -o %t.bc +// RUN: rm -rf %t.klee-out +// RUN: %klee --output-dir=%t.klee-out --entry-point=other_main %t.bc > %t.log +// RUN: grep "Hello World" %t.log + +#include <stdio.h> + +int other_main() { + printf("Hello World\n"); + return 0; +} |