about summary refs log tree commit diff homepage
path: root/test/Feature/FunctionPointer.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature/FunctionPointer.c')
-rw-r--r--test/Feature/FunctionPointer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Feature/FunctionPointer.c b/test/Feature/FunctionPointer.c
index 649946dc..b2e31ee0 100644
--- a/test/Feature/FunctionPointer.c
+++ b/test/Feature/FunctionPointer.c
@@ -1,6 +1,6 @@
 // RUN: %clang %s -emit-llvm -g -c -o %t.bc
 // RUN: rm -rf %t.klee-out
-// RUN: %klee --output-dir=%t.klee-out --write-no-tests --exit-on-error %t.bc 2>&1 | FileCheck %s
+// RUN: %klee --search=bfs --output-dir=%t.klee-out --write-no-tests --exit-on-error %t.bc 2>&1 | FileCheck %s
 
 #include "klee/klee.h"
 
@@ -42,8 +42,8 @@ int main(int argc, char **argv) {
   void (*fp2)(const char *);
   klee_make_symbolic(&fp2, sizeof fp2, "fp2");
   if(fp2 == baz || fp2 == foo) {
-    // CHECK-DAG: baz: calling via symbolic!
-    // CHECK-DAG: foo: calling via symbolic!
+    // CHECK: baz: calling via symbolic!
+    // CHECK: foo: calling via symbolic!
     fp2("calling via symbolic!");
   }