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-11 11:28:19 +0100
committerGitHub <noreply@github.com>2017-08-11 11:28:19 +0100
commitd19500eb93083c8cc6bb72bcb54414015830cacb (patch)
tree2c577f7d9029e4512b7444e0dbc24ebe0f94a93f /test/lit.cfg
parente0b62ce479f21660cd1200f3ac2567d358ff05d3 (diff)
parent4083373b5ae3d8a22b3e5672f95075477c8ae328 (diff)
downloadklee-d19500eb93083c8cc6bb72bcb54414015830cacb.tar.gz
Merge pull request #746 from ccadar/posix
Fixed a bug causing KLEE to generate files with no permission bits, and 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(