about summary refs log tree commit diff homepage
path: root/test
diff options
context:
space:
mode:
authorLukas Zaoral <lzaoral@redhat.com>2021-10-13 13:02:46 +0200
committerMartinNowack <2443641+MartinNowack@users.noreply.github.com>2021-12-20 14:36:51 +0000
commit6e0b4aa97ff11eac4e58fc8000e9c7c6d07f9bac (patch)
tree7a64f4565e21a2872cb539274714ae572628bad0 /test
parent10b04f379ee275223f4412cd86d18401de4cdf02 (diff)
downloadklee-6e0b4aa97ff11eac4e58fc8000e9c7c6d07f9bac.tar.gz
llvm13: Add LLVM 13 to lit.cfg
Diffstat (limited to 'test')
-rw-r--r--test/lit.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index bf20c15e..60bcb781 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -158,7 +158,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" }
+                        "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