[Lldb-commits] [lldb] [lldb] Disable new TestLocationListLookup when clang version is <= 11 (PR #75102)
Augusto Noronha via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 11 13:38:50 PST 2023
https://github.com/augusto2112 updated https://github.com/llvm/llvm-project/pull/75102
>From be91ba6b5b411e2fc6b9a7b49324ef5b20c9e2ed Mon Sep 17 00:00:00 2001
From: Augusto Noronha <augusto2112 at me.com>
Date: Mon, 11 Dec 2023 13:38:04 -0800
Subject: [PATCH] [lldb] Disable new TestLocationListLookup when clang version
is <= 11
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 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