Skip to content

Commit c39c3e1

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 ``` e.g. https://ci.swift.org/job/oss-swift_tools-RA_stdlib-RD_test-simulator//4847/console Tracking in rdar://84643923
1 parent 034c0bd commit c39c3e1

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
@@ -19,6 +19,9 @@
1919
// loaded too late").
2020
// REQUIRES: no_asan
2121

22+
// Disable to unblock CI
23+
// REQUIRES: rdar84643923
24+
2225
class MyClass {
2326
func foo() { print("MyClass.foo") }
2427
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
@@ -19,6 +19,9 @@
1919
// loaded too late").
2020
// REQUIRES: no_asan
2121

22+
// Disable to unblock CI
23+
// REQUIRES: rdar84643923
24+
2225
protocol TheProtocol {
2326
func func1_live()
2427
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
@@ -40,6 +40,9 @@
4040
// loaded too late").
4141
// REQUIRES: no_asan
4242

43+
// Disable to unblock CI
44+
// REQUIRES: rdar84643923
45+
4346
#if LIBRARY
4447

4548
public protocol MyProtocol {

0 commit comments

Comments
 (0)