diff options
author | Frank Busse <bb0xfb@gmail.com> | 2020-09-28 17:45:01 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-09-30 21:28:12 +0100 |
commit | 54b5487f3fbe0c33dc4c36410e82fa38a2da681a (patch) | |
tree | fffc3514db2c016d72553ff9fcd9743bce3d51e8 /test/lit.cfg | |
parent | 07deecf58adad20fbc44b9b74dbac1e65e2b6647 (diff) | |
download | klee-54b5487f3fbe0c33dc4c36410e82fa38a2da681a.tar.gz |
tests: support .test and introduce %klee-stats
Diffstat (limited to 'test/lit.cfg')
-rw-r--r-- | test/lit.cfg | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 47d1e734..c1003e70 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -23,7 +23,7 @@ config.test_format = lit.formats.ShTest(execute_external=False) # suffixes: A list of file extensions to treat as test files # Note this can be overridden by lit.local.cfg files -config.suffixes = ['.ll', '.c', '.cpp', '.kquery'] +config.suffixes = ['.ll', '.c', '.cpp', '.kquery', '.test'] # test_source_root: The root path where tests are located. config.test_source_root = os.path.dirname(__file__) @@ -131,6 +131,7 @@ if len(kleaver_extra_params) != 0: # to come first, e.g., klee-replay should come before klee subs = [ ('%kleaver', 'kleaver', kleaver_extra_params), ('%klee-replay', 'klee-replay', ''), + ('%klee-stats', 'klee-stats', ''), ('%klee-zesti', 'klee-zesti', ''), ('%klee','klee', klee_extra_params), ('%ktest-tool', 'ktest-tool', ''), |