diff options
author | Daniel Dunbar <daniel@zuster.org> | 2014-09-12 17:22:47 -0700 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2014-09-12 17:39:18 -0700 |
commit | 8c6a1145fd65ed2f8d5ef49ea80c6249ce71ec29 (patch) | |
tree | 7a9974846eb4457092e81228e2257e41b8d1474c /test | |
parent | 9b715dfc40311247b08daf5fa8695a95fd66106f (diff) | |
download | klee-8c6a1145fd65ed2f8d5ef49ea80c6249ce71ec29.tar.gz |
[tests] Dramatically scale back the forks limit for our ImmutableSet test.
- This one test was taking about half the test time, and it definitely isn't worth that much value as a test. We probably should have some kind of long running tests infrastructure for things where we actually want to test KLEE on real programs.
Diffstat (limited to 'test')
-rw-r--r-- | test/Dogfood/ImmutableSet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Dogfood/ImmutableSet.cpp b/test/Dogfood/ImmutableSet.cpp index e4264b9b..e09227cf 100644 --- a/test/Dogfood/ImmutableSet.cpp +++ b/test/Dogfood/ImmutableSet.cpp @@ -1,6 +1,6 @@ // RUN: %llvmgxx -I../../../include -g -DMAX_ELEMENTS=4 -fno-exceptions -emit-llvm -c -o %t1.bc %s // RUN: rm -rf %t.klee-out -// RUN: %klee --output-dir=%t.klee-out --libc=klee --max-forks=200 --no-output --exit-on-error --optimize --disable-inlining --search=nurs:depth --use-cex-cache %t1.bc +// RUN: %klee --output-dir=%t.klee-out --libc=klee --max-forks=25 --no-output --exit-on-error --optimize --disable-inlining --search=nurs:depth --use-cex-cache %t1.bc #include "klee/klee.h" #include "klee/Internal/ADT/ImmutableSet.h" |