[Lldb-commits] [lldb] a37fa2a - [lldb] Disable new TestLocationListLookup when clang version is <= 11 (#75102)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 11 14:40:47 PST 2023
Author: Augusto Noronha
Date: 2023-12-11T14:40:43-08:00
New Revision: a37fa2a8e1c827f1ff04b0b13b83cf97eefe74c0
URL: https://github.com/llvm/llvm-project/commit/a37fa2a8e1c827f1ff04b0b13b83cf97eefe74c0
DIFF: https://github.com/llvm/llvm-project/commit/a37fa2a8e1c827f1ff04b0b13b83cf97eefe74c0.diff
LOG: [lldb] Disable new TestLocationListLookup when clang version is <= 11 (#75102)
The newly introduced LocationListLookupTestCase.test_loclist_expr test
fails with older clangs.
Added:
Modified:
lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py b/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py
index ccee3bfde3f5de..feea14ff355e82 100644
--- a/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py
+++ b/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py
@@ -43,6 +43,7 @@ def test_loclist_frame_var(self):
self.build()
self.check_local_vars(self.launch(), check_expr=False)
+ @skipIf(compiler="clang", compiler_version=["<=", "11.0"])
@skipUnlessDarwin
def test_loclist_expr(self):
self.build()
More information about the lldb-commits
mailing list