Skip to content

Commit 40d4349

Browse files
committed
Disable IRGen tests to unblock CI:
Seeing failures in: ``` 19:37:18 Failed Tests (3): 19:37:18 Swift(macosx-x86_64) :: IRGen/virtual-function-elimination-exec.swift 19:37:18 Swift(macosx-x86_64) :: IRGen/witness-method-elimination-exec.swift 19:37:18 Swift(macosx-x86_64) :: IRGen/witness-method-elimination-two-modules.swift ``` Tracking in rdar://84643923
1 parent 2ba1dc8 commit 40d4349

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

test/IRGen/virtual-function-elimination-exec.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
// FIXME(mracek): More work needed to get this to work on non-Apple platforms.
1515
// REQUIRES: VENDOR=apple
1616

17+
// Disable to unblock CI
18+
// REQUIRES: rdar84643923
19+
1720
class MyClass {
1821
func foo() { print("MyClass.foo") }
1922
func bar() { print("MyClass.bar") }

test/IRGen/witness-method-elimination-exec.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
// FIXME(mracek): More work needed to get this to work on non-Apple platforms.
1515
// REQUIRES: VENDOR=apple
1616

17+
// Disable to unblock CI
18+
// REQUIRES: rdar84643923
19+
1720
protocol TheProtocol {
1821
func func1_live()
1922
func func2_dead()

test/IRGen/witness-method-elimination-two-modules.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
// FIXME(mracek): More work needed to get this to work on non-Apple platforms.
3636
// REQUIRES: VENDOR=apple
3737

38+
// Disable to unblock CI
39+
// REQUIRES: rdar84643923
40+
3841
#if LIBRARY
3942

4043
public protocol MyProtocol {

0 commit comments

Comments
 (0)