diff options
| author | Frank Busse <bb0xfb@gmail.com> | 2022-03-25 14:05:56 +0000 |
|---|---|---|
| committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2022-05-06 11:14:32 +0100 |
| commit | 3515cb00c750ec5f081d4d0e3a1c386080ccda7e (patch) | |
| tree | ba7f66d4816d189a48164761e553d17ff76609dc /test/Feature/FunctionAliasExit.c | |
| parent | 0ceea620c91c53a5167af83deddc97571bb67808 (diff) | |
| download | klee-3515cb00c750ec5f081d4d0e3a1c386080ccda7e.tar.gz | |
tests: make function pointer tests more robust
Diffstat (limited to 'test/Feature/FunctionAliasExit.c')
| -rw-r--r-- | test/Feature/FunctionAliasExit.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Feature/FunctionAliasExit.c b/test/Feature/FunctionAliasExit.c index b30838d0..40b5d617 100644 --- a/test/Feature/FunctionAliasExit.c +++ b/test/Feature/FunctionAliasExit.c @@ -1,6 +1,8 @@ // RUN: %clang %s -emit-llvm %O0opt -c -o %t.bc // RUN: rm -rf %t.klee-out -// RUN: %klee --output-dir=%t.klee-out -function-alias=exit:end %t.bc 2>&1 | FileCheck %s +// RUN: %klee --search=bfs --output-dir=%t.klee-out -function-alias=exit:end %t.bc 2>&1 | FileCheck %s + +#include "klee/klee.h" #include <stdio.h> #include <stdlib.h> |
