diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Feature/NoExternalCallsAllowed.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Feature/NoExternalCallsAllowed.c b/test/Feature/NoExternalCallsAllowed.c new file mode 100644 index 00000000..a0886121 --- /dev/null +++ b/test/Feature/NoExternalCallsAllowed.c @@ -0,0 +1,13 @@ +// RUN: %llvmgcc %s -emit-llvm %O0opt -c -g -o %t1.bc +// RUN: rm -rf %t.klee-out +// RUN: %klee --output-dir=%t.klee-out --external-calls=none %t1.bc 2>&1 | FileCheck %s +// RUN: test %t.klee-out/test000001.user.err + +#include <stdio.h> + +int main(int argc, char** argv) { + // CHECK: Disallowed call to external function: abs + int x = abs(argc); + printf("%d\n", argc); + return 0; +} |