diff options
author | Lukas Zaoral <lzaoral@redhat.com> | 2021-03-04 15:12:03 +0100 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2021-09-10 15:14:56 +0100 |
commit | 24f79598ad2302161c6ed0743faef67a639fb948 (patch) | |
tree | 777e5f6d0ff5c27ee2e9310af9d1d03537961a9f /test | |
parent | 8ac323db7d367799fba9435b64fe715c603e60ba (diff) | |
download | klee-24f79598ad2302161c6ed0743faef67a639fb948.tar.gz |
llvm12: Add LLVM 12 to lit.cfg
Diffstat (limited to 'test')
-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 4138a59d..bf20c15e 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -157,7 +157,8 @@ 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", "7.1", "8.0", "9.0", "10.0", "11.0", "11.1"]) +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" } current_llvm_version_tuple = (int(config.llvm_version_major), int(config.llvm_version_minor)) current_llvm_version = "%s.%s" % current_llvm_version_tuple |