about summary refs log tree commit diff homepage
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorFrank Busse <bb0xfb@gmail.com>2020-09-28 17:45:01 +0100
committerCristian Cadar <c.cadar@imperial.ac.uk>2020-09-30 21:28:12 +0100
commit54b5487f3fbe0c33dc4c36410e82fa38a2da681a (patch)
treefffc3514db2c016d72553ff9fcd9743bce3d51e8 /test/lit.cfg
parent07deecf58adad20fbc44b9b74dbac1e65e2b6647 (diff)
downloadklee-54b5487f3fbe0c33dc4c36410e82fa38a2da681a.tar.gz
tests: support .test and introduce %klee-stats
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg3
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', ''),