diff options
author | Augusto Noronha <augusto2112@me.com> | 2023-12-13 16:30:39 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-13 16:30:39 -0800 |
commit | b047c9116432375586ddf7f01bf272f99d9a005c (patch) | |
tree | 913dab606896fdc157efda33b1a6af2d560fd11d | |
parent | 2e45326b088b3b2f5c8327f6d5e61bdd2845bbbe (diff) | |
download | llvm-b047c9116432375586ddf7f01bf272f99d9a005c.zip llvm-b047c9116432375586ddf7f01bf272f99d9a005c.tar.gz llvm-b047c9116432375586ddf7f01bf272f99d9a005c.tar.bz2 |
[lldb] Skip 2 newly introduced tests from running on DWARF2 and clang 11 (#75406)
-rw-r--r-- | lldb/test/API/functionalities/data-formatter/builtin-formats/TestBuiltinFormats.py | 1 | ||||
-rw-r--r-- | lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lldb/test/API/functionalities/data-formatter/builtin-formats/TestBuiltinFormats.py b/lldb/test/API/functionalities/data-formatter/builtin-formats/TestBuiltinFormats.py index 4e0f14d0..8c3bdab 100644 --- a/lldb/test/API/functionalities/data-formatter/builtin-formats/TestBuiltinFormats.py +++ b/lldb/test/API/functionalities/data-formatter/builtin-formats/TestBuiltinFormats.py @@ -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): diff --git a/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py b/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py index feea14f..c5f4a7c 100644 --- a/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py +++ b/lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py @@ -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() |