diff options
author | Lukáš Zaoral <lzaoral@redhat.com> | 2022-03-05 13:44:24 +0100 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2023-03-20 14:35:16 +0000 |
commit | 4d7eb8bab0945665a778fbf6064aaa4016a2756c (patch) | |
tree | ca63760d2a01b5b5e27b3134ecf7291b5acbd4d5 | |
parent | 7c68c58bff2884c7d61f5756aad342caabc83233 (diff) | |
download | klee-4d7eb8bab0945665a778fbf6064aaa4016a2756c.tar.gz |
llvm14: Add LLVM 14 to 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 4d7382cf..c935ab8e 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -161,7 +161,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 = { "9.0", "10.0", "11.0", "11.1", "12.0", "13.0" } +known_llvm_versions = { "9.0", "10.0", "11.0", "11.1", "12.0", "13.0", "14.0" } current_llvm_version_tuple = (int(config.llvm_version_major), int(config.llvm_version_minor)) current_llvm_version = "%s.%s" % current_llvm_version_tuple |