diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2019-09-15 23:36:19 +0200 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-10-07 13:26:53 +0100 |
commit | 849e8d578e94ce610482976f742b30a4edfc3a1e (patch) | |
tree | 4bc731a56caf593c35765bfdb68134438eba0c41 /test | |
parent | 1611811523bcf17911c9c43efff79b0d9b48b63f (diff) | |
download | klee-849e8d578e94ce610482976f742b30a4edfc3a1e.tar.gz |
fix: make llvm 7.1 known
Diffstat (limited to 'test')
-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 25061a68..c240de27 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -155,7 +155,7 @@ config.substitutions.append( # Add feature for the LLVM version in use, so it can be tested in REQUIRES and # XFAIL checks. We also add "not-XXX" variants, for the same reason. -known_llvm_versions = set(["3.8", "3.9", "4.0", "5.0", "6.0", "7.0", "8.0"]) +known_llvm_versions = set(["3.8", "3.9", "4.0", "5.0", "6.0", "7.0", "7.1", "8.0"]) current_llvm_version = "%s.%s" % (config.llvm_version_major, config.llvm_version_minor) |