Skip to content

Commit cfce85b

Browse files
authored
Merge pull request #40564 from kubamracek/85970023
Disable VFE/WME runtime tests when CPU=arm64e
2 parents b48e148 + f963555 commit cfce85b

4 files changed

+12
-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+
// Requires rdar://85970023 which is only fixed in the 20211026 branch of LLVM.
23+
// UNSUPPORTED: CPU=arm64e
24+
2225
class MyClass {
2326
func foo() { print("MyClass.foo") }
2427
func bar() { print("MyClass.bar") }

test/IRGen/virtual-function-elimination-two-modules.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
// Remote test execution does not support dynamically loaded libraries.
4343
// UNSUPPORTED: remote_run
4444

45+
// Requires rdar://85970023 which is only fixed in the 20211026 branch of LLVM.
46+
// UNSUPPORTED: CPU=arm64e
47+
4548
#if LIBRARY
4649

4750
public class MyClass {

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+
// Requires rdar://85970023 which is only fixed in the 20211026 branch of LLVM.
23+
// UNSUPPORTED: CPU=arm64e
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
@@ -43,6 +43,9 @@
4343
// Remote test execution does not support dynamically loaded libraries.
4444
// UNSUPPORTED: remote_run
4545

46+
// Requires rdar://85970023 which is only fixed in the 20211026 branch of LLVM.
47+
// UNSUPPORTED: CPU=arm64e
48+
4649
#if LIBRARY
4750

4851
public protocol MyProtocol {

0 commit comments

Comments
 (0)