diff options
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: |