Skip to content

Commit 7eae042

Browse files
committed
XFAIL a few tests that need further investigation
1 parent bd5f4b7 commit 7eae042

File tree

5 files changed

+19
-1
lines changed

5 files changed

+19
-1
lines changed

test/Misc/expression_too_complex.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
// RUN: %target-typecheck-verify-swift -solver-memory-threshold 10000 -propagate-constraints
2+
// XFAIL: *
3+
// rdar://problem/31794148
24

35
var z = 10 + 10 // expected-error{{expression was too complex to be solved in reasonable time; consider breaking up the expression into distinct sub-expressions}}
46

test/Prototypes/BigInt.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
1010
//
1111
//===----------------------------------------------------------------------===//
12-
// XFAIL: linux
12+
// XFAIL: *
1313
// RUN: rm -rf %t ; mkdir -p %t
1414
// RUN: %target-build-swift -swift-version 4 -o %t/a.out %s
1515
// RUN: %target-run %t/a.out

test/SourceKit/DocSupport/doc_clang_module.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
// RUN: %sourcekitd-test -req=doc-info -module Foo -- -F %S/../Inputs/libIDE-mock-sdk \
33
// RUN: %mcp_opt %clang-importer-sdk | %sed_clean > %t.response
44
// RUN: diff -u %s.response %t.response
5+
// XFAIL: *
6+
// TODO: re-enable or perhaps this is a bit too hard-coded a test?
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// RUN: %target-swift-frontend %s -emit-ir
2+
3+
public protocol QHash : Collection, ExpressibleByArrayLiteral {
4+
associatedtype Key where Key == Element
5+
6+
init()
7+
}
8+
9+
extension QHash {
10+
init(withElements newElements: Key...) {
11+
self.init()
12+
}
13+
}

validation-test/compiler_crashers_2_fixed/0066-sr3687.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// RUN: %target-swift-frontend %s -emit-ir
2+
// <rdar://problem/31798398>
23

34
public protocol QHash : Collection, ExpressibleByArrayLiteral {
45
associatedtype Key

0 commit comments

Comments
 (0)