diff options
author | Daniel Dunbar <daniel@zuster.org> | 2014-09-12 15:28:48 -0700 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2014-09-12 17:39:18 -0700 |
commit | 59970eaaef72fc5812cc013b2993633efe2749e0 (patch) | |
tree | 9876e8f46fad609bb39a7b1e917c9b1410a9c337 /test/lit.cfg | |
parent | 8c3e28cfe911a46d2a73d0434a048d60c35635bf (diff) | |
download | klee-59970eaaef72fc5812cc013b2993633efe2749e0.tar.gz |
Add support for testing Concrete tests via lit.
Fixes #96.
Diffstat (limited to 'test/lit.cfg')
-rw-r--r-- | test/lit.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 3d00da53..a2c9813a 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -73,6 +73,9 @@ for name in subs: lit.fatal('{0} is not set'.format(name)) config.substitutions.append( ('%' + name, value)) +# Add a substitution for lli. +config.substitutions.append( ('%lli', os.path.join(llvm_tools_dir, 'lli')) ) + # Get KLEE and Kleaver specific parameters passed on llvm-lit cmd line # e.g. llvm-lit --param klee_opts=--help try: |