diff options
author | Frank Busse <bb0xfb@gmail.com> | 2021-12-15 16:38:21 +0000 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2022-03-17 22:59:26 +0000 |
commit | 0f45ab7a5008bd5e68201449bd1e0a999f999457 (patch) | |
tree | 585d30a6d2cd9c2ee6c31240a86d034f10d564bb /test/lit.cfg | |
parent | d8553f3cec042b5af9e21c268cb14ee8f7b30083 (diff) | |
download | klee-0f45ab7a5008bd5e68201449bd1e0a999f999457.tar.gz |
remove LLVM < 6 from build/test scripts
Diffstat (limited to 'test/lit.cfg')
-rw-r--r-- | test/lit.cfg | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 60bcb781..0d7aa1ed 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -157,8 +157,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 = { "3.8", "3.9", "4.0", "5.0", "6.0", "7.0", "7.1", "8.0", - "9.0", "10.0", "11.0", "11.1", "12.0", "13.0" } +known_llvm_versions = { "6.0", "7.0", "7.1", "8.0", "9.0", "10.0", "11.0", "11.1", "12.0", "13.0" } current_llvm_version_tuple = (int(config.llvm_version_major), int(config.llvm_version_minor)) current_llvm_version = "%s.%s" % current_llvm_version_tuple |