[lldb] Skip 2 newly introduced tests from running on DWARF2 and clang 11 (#75406)

This commit is contained in:
Augusto Noronha 2023-12-13 16:30:39 -08:00 committed by GitHub
parent 2e45326b08
commit b047c91164
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -19,6 +19,7 @@ class TestCase(TestBase):
self.assertTrue(result.Succeeded(), result.GetError())
return result.GetOutput()
@skipIf(dwarf_version=["<", "3"])
@no_debug_info_test
@skipIfWindows
def testAllPlatforms(self):

View File

@ -43,7 +43,8 @@ class LocationListLookupTestCase(TestBase):
self.build()
self.check_local_vars(self.launch(), check_expr=False)
@skipIf(compiler="clang", compiler_version=["<=", "11.0"])
@skipIf(dwarf_version=["<", "3"])
@skipIf(compiler="clang", compiler_version=["<", "12.0"])
@skipUnlessDarwin
def test_loclist_expr(self):
self.build()