Skip to content

Commit d324445

Browse files
committed
Disable two tests that fail after enabling opaque pointer types in Swift
To be able to see how far we can get disable these two tests to see whether other things break in CI. swiftlang/swift#66077 is the PR that trys to enable opaque pointers in Swift. rdar://109831415
1 parent ca18bb8 commit d324445

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

lldb/test/API/functionalities/data-formatter/swift-unsafe/TestSwiftUnsafeTypeFormatters.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,8 @@
44
import lldbsuite.test.lldbinline as lldbinline
55
from lldbsuite.test.decorators import *
66

7-
lldbinline.MakeInlineTest(__file__, globals(), decorators=[swiftTest])
7+
# Skip test until rdar://109831415 is fixed. After moving to opaque pointer
8+
# usage this test fails.
9+
lldbinline.MakeInlineTest(__file__, globals(), decorators=[swiftTest,
10+
skipIfDarwin,
11+
skipIfLinux])

lldb/test/API/lang/swift/variables/consume_operator/TestSwiftConsumeOperator.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ class TestSwiftConsumeOperatorType(TestBase):
3232
# Skip on aarch64 linux: rdar://91005071
3333
@skipIf(archs=["aarch64"], oslist=["linux"])
3434
@swiftTest
35+
# Skip test until rdar://109831415 is fixed. After moving to opaque pointer
36+
# usage this test fails.
37+
@skipIfDarwin
38+
@skipIfLinux
3539
def test_swift_consume_operator(self):
3640
"""Check that we properly show variables at various points of the CFG while
3741
stepping with the consume operator.

0 commit comments

Comments
 (0)