Skip to content

Commit 7357afe

Browse files
committed
XFAIL failing lldb tests
1 parent 322c9b1 commit 7357afe

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

lldb/test/API/lang/swift/array_tuple_resilient/TestSwiftArrayTupleResilient.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
from lldbsuite.test.decorators import *
33

44
lldbinline.MakeInlineTest(__file__, globals(), decorators=[swiftTest, skipUnlessDarwin,
5-
expectedFailureAll(archs=['arm64_32'], bugnumber="<rdar://problem/58065423>")])
5+
expectedFailureAll(archs=['arm64_32'], bugnumber="<rdar://problem/58065423>"),
6+
skipIf(bugnumber='rdar://76105456', oslist=['macosx'])])
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import lldbsuite.test.lldbinline as lldbinline
22
from lldbsuite.test.decorators import *
33

4-
lldbinline.MakeInlineTest(__file__, globals(), decorators=[swiftTest, skipUnlessDarwin])
4+
lldbinline.MakeInlineTest(__file__, globals(), decorators=[swiftTest, skipUnlessDarwin,
5+
skipIf(bugnumber='rdar://76105456', oslist=['macosx'])])
6+

lldb/test/API/lang/swift/swiftieformatting/TestSwiftieFormatting.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def setUp(self):
2929

3030
@skipUnlessDarwin
3131
@swiftTest
32+
@skipIf(bugnumber='rdar://76105456', oslist=['macosx'])
3233
def test_swiftie_formatting(self):
3334
"""Test that data formatters honor Swift conventions"""
3435
self.build()

lldb/test/Shell/SwiftREPL/ResilientArray.test

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
// REQUIRES: swift
33

44
// RUN: %lldb --repl < %s | FileCheck %s
5-
5+
// rdar://76105456
6+
// XFAIL: *
67
import Foundation
78

89
let x : [URL] = [URL(string: "https://github.com")!, URL(string: "https://apple.com")!]

lldb/test/Shell/SwiftREPL/ResilientDict.test

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
// RUN: %lldb --repl < %s | FileCheck %s --check-prefix=DICT
55

6+
// rdar://76105456
7+
// XFAIL: *
8+
69
// The dictionary order isn't deterministic, so print the dictionary
710
// once per element.
811

0 commit comments

Comments
 (0)