From 55d4c5ec31aabb1e6fdf42d79dcd40e890e5367a Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Mon, 9 Sep 2024 09:42:48 -0700 Subject: [PATCH] Temporarily skip tests that fail on noasserts bots --- .../import_search_paths/TestSwiftImportSearchPaths.py | 2 ++ lldb/test/Shell/Swift/MissingVFSOverlay.test | 1 + 2 files changed, 3 insertions(+) diff --git a/lldb/test/API/lang/swift/expression/import_search_paths/TestSwiftImportSearchPaths.py b/lldb/test/API/lang/swift/expression/import_search_paths/TestSwiftImportSearchPaths.py index 21c27ba8e7502..679c92087e304 100644 --- a/lldb/test/API/lang/swift/expression/import_search_paths/TestSwiftImportSearchPaths.py +++ b/lldb/test/API/lang/swift/expression/import_search_paths/TestSwiftImportSearchPaths.py @@ -9,10 +9,12 @@ class TestSwiftImportSearchPaths(lldbtest.TestBase): NO_DEBUG_INFO_TESTCASE = True mydir = lldbtest.TestBase.compute_mydir(__file__) + @skipIf(bugnumber='rdar://135553659') @swiftTest def test_positive(self): self.do_test('true') + @skipIf(bugnumber='rdar://135553659') @swiftTest def test_negative(self): self.do_test('false') diff --git a/lldb/test/Shell/Swift/MissingVFSOverlay.test b/lldb/test/Shell/Swift/MissingVFSOverlay.test index 8ccd8ab0d6a52..3f37b16030b51 100644 --- a/lldb/test/Shell/Swift/MissingVFSOverlay.test +++ b/lldb/test/Shell/Swift/MissingVFSOverlay.test @@ -1,5 +1,6 @@ # Test that error messages from constructing ClangImporter # are surfaced to the user. +# REQUIRES: 135553659 # REQUIRES: swift # RUN: rm -rf %t && mkdir %t && cd %t