about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorTomasz Kuchta <t.kuchta@samsung.com>2023-11-17 21:39:53 +0100
committerMartinNowack <2443641+MartinNowack@users.noreply.github.com>2024-01-12 14:07:49 +0000
commitf42931afbef256679bd40f78dd108b4ad5a34322 (patch)
treed2821a4b779517ca4a8c741eb0da0590e675168b
parent5ea5d436e4e52709c0f4e02a1b0ed97d944eeb4d (diff)
downloadklee-f42931afbef256679bd40f78dd108b4ad5a34322.tar.gz
Make test more deterministic
-rw-r--r--test/Feature/SingleObjectResolution.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Feature/SingleObjectResolution.c b/test/Feature/SingleObjectResolution.c
index 7129d963..8c4e188e 100644
--- a/test/Feature/SingleObjectResolution.c
+++ b/test/Feature/SingleObjectResolution.c
@@ -1,9 +1,9 @@
 // RUN: %clang %s -g -emit-llvm %O0opt -c -o %t.bc
 // RUN: rm -rf %t.klee-out
-// RUN: %klee --output-dir=%t.klee-out --single-object-resolution %t.bc > %t.log 2>&1
+// RUN: %klee --search=dfs --output-dir=%t.klee-out --single-object-resolution %t.bc > %t.log 2>&1
 // RUN: FileCheck %s -input-file=%t.log
-// RUN: %klee-stats --print-columns 'Queries' --table-format=csv %t.klee-out | FileCheck %s --check-prefix CHECK-STATS
-// CHECK-STATS: 6218
+// RUN: %klee-stats --print-columns 'SolverQueries' --table-format=csv %t.klee-out | FileCheck %s --check-prefix CHECK-STATS
+// CHECK-STATS: 193
 
 #include "klee/klee.h"
 #include <stdlib.h>