diff options
author | Dan Liew <daniel.liew@imperial.ac.uk> | 2014-01-12 18:38:02 +0000 |
---|---|---|
committer | Dan Liew <daniel.liew@imperial.ac.uk> | 2014-01-20 13:21:31 +0000 |
commit | 193733044666af86e295c1f9957dbd21caa5612b (patch) | |
tree | fdbab628ba457fff11b2c50ca28757ac949a9970 /test/lit.cfg | |
parent | f626bdb1905c4d56fdcca04cd6ee84acb7597431 (diff) | |
download | klee-193733044666af86e295c1f9957dbd21caa5612b.tar.gz |
Removed use of deprecated Tcl parser for tests. This allows
llvm-lit from LLVM3.3 to actually run KLEE's testsuite. Things still seem to be broken though.
Diffstat (limited to 'test/lit.cfg')
-rw-r--r-- | test/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 39aaa824..c2144d43 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -8,7 +8,7 @@ import os config.name = 'KLEE' # testFormat: The test format to use to interpret tests. -config.test_format = lit.formats.TclTest() +config.test_format = lit.formats.ShTest(execute_external=False) # suffixes: A list of file extensions to treat as test files, this is actually # set by on_clone(). |