about summary refs log tree commit diff homepage
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2017-08-09 18:31:04 +0100
committerCristian Cadar <c.cadar@imperial.ac.uk>2017-08-10 19:57:32 +0100
commit4083373b5ae3d8a22b3e5672f95075477c8ae328 (patch)
tree2afd2a664bca87250c460e4dcaa6a6a1a910acc7 /test/lit.cfg
parent01346d9e7c4199a704c26df2a86f7d4ee26fbd2b (diff)
downloadklee-4083373b5ae3d8a22b3e5672f95075477c8ae328.tar.gz
Added a basic test for klee-replay
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index 6cb85712..00b429b6 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -133,9 +133,12 @@ if len(kleaver_extra_params) != 0:
   )
 
 # Set absolute paths and extra cmdline args for KLEE's tools
+# If a tool's name is a prefix of another, the longer name has
+# to come first, e.g., klee-replay should come before klee
 subs = [ ('%kleaver', 'kleaver', kleaver_extra_params),
-  ('%klee','klee', klee_extra_params),
-  ('%ktest-tool', 'ktest-tool', '')
+         ('%klee-replay', 'klee-replay', ''),
+         ('%klee','klee', klee_extra_params),
+         ('%ktest-tool', 'ktest-tool', '')
 ]
 for s,basename,extra_args in subs:
   config.substitutions.append(