From a37fa2a8e1c827f1ff04b0b13b83cf97eefe74c0 Mon Sep 17 00:00:00 2001 From: Augusto Noronha Date: Mon, 11 Dec 2023 14:40:43 -0800 Subject: [PATCH] [lldb] Disable new TestLocationListLookup when clang version is <= 11 (#75102) The newly introduced LocationListLookupTestCase.test_loclist_expr test fails with older clangs. --- .../location-list-lookup/TestLocationListLookup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py b/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py index ccee3bfde3f5..feea14ff355e 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 @@ class LocationListLookupTestCase(TestBase): 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()