Skip to content

Commit b047c91

Browse files
authored
[lldb] Skip 2 newly introduced tests from running on DWARF2 and clang 11 (#75406)
1 parent 2e45326 commit b047c91

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lldb/test/API/functionalities/data-formatter/builtin-formats/TestBuiltinFormats.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def getFormatted(self, format, expr):
1919
self.assertTrue(result.Succeeded(), result.GetError())
2020
return result.GetOutput()
2121

22+
@skipIf(dwarf_version=["<", "3"])
2223
@no_debug_info_test
2324
@skipIfWindows
2425
def testAllPlatforms(self):

lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ def test_loclist_frame_var(self):
4343
self.build()
4444
self.check_local_vars(self.launch(), check_expr=False)
4545

46-
@skipIf(compiler="clang", compiler_version=["<=", "11.0"])
46+
@skipIf(dwarf_version=["<", "3"])
47+
@skipIf(compiler="clang", compiler_version=["<", "12.0"])
4748
@skipUnlessDarwin
4849
def test_loclist_expr(self):
4950
self.build()

0 commit comments

Comments
 (0)