diff options
author | Tomasz Kuchta <t.kuchta@samsung.com> | 2023-11-17 21:39:53 +0100 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2024-01-12 14:07:49 +0000 |
commit | f42931afbef256679bd40f78dd108b4ad5a34322 (patch) | |
tree | d2821a4b779517ca4a8c741eb0da0590e675168b /test/Feature | |
parent | 5ea5d436e4e52709c0f4e02a1b0ed97d944eeb4d (diff) | |
download | klee-f42931afbef256679bd40f78dd108b4ad5a34322.tar.gz |
Make test more deterministic
Diffstat (limited to 'test/Feature')
-rw-r--r-- | test/Feature/SingleObjectResolution.c | 6 |
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> |