about summary refs log tree commit diff homepage
path: root/test
diff options
context:
space:
mode:
authorFrank Busse <bb0xfb@gmail.com>2021-02-24 19:56:57 +0000
committerCristian Cadar <c.cadar@imperial.ac.uk>2021-03-04 20:46:08 +0000
commita910964ca18c3570a88f65043b0ad888ce13600e (patch)
tree38d192edc2c393f1be101a5fcffda0dbf47ce3dd /test
parent91420b32cd347b43f64d337e5bd1f0855d0b247c (diff)
downloadklee-a910964ca18c3570a88f65043b0ad888ce13600e.tar.gz
tests: add support for LLVM 11.1
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 2133bdbf..6a02daee 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -157,7 +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 = set(["3.8", "3.9", "4.0", "5.0", "6.0", "7.0", "7.1", "8.0", "9.0", "10.0", "11.0"])
+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"])
 current_llvm_version_tuple = (int(config.llvm_version_major), int(config.llvm_version_minor))
 current_llvm_version = "%s.%s" % current_llvm_version_tuple