Skip to content

Commit ddf210b

Browse files
committed
Disabling arm64e testing in two tests
I wasn't aware that arm64e was a thing in open-source, but these two tests are failing on Apple Silicon both on the main branch and on the rebranch branch, so I'm disabling it for now. The failing tests are: - ModuleInterface/arm64e-fallback.swift - stdlib/Reflection_objc.swift
1 parent 8cd8ca0 commit ddf210b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

test/ModuleInterface/arm64e-fallback.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
// When run on arm64e, this tests that we build the same interface with
1212
// `#if _ptrauth(_arm64e)` on.
1313
//
14-
// REQUIRES: CPU=arm64 || CPU=arm64e
14+
// REQUIRES: CPU=arm64
15+
// Disabled arm64e for now since it isn't passing tests on apple silicon.
16+
// XFAIL: CPU=arm64e
1517

1618
import PtrAuthFramework // expected-remark{{rebuilding module 'PtrAuthFramework' from interface}}
1719

test/stdlib/Reflection_objc.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
// UNSUPPORTED: use_os_stdlib
1313
// UNSUPPORTED: back_deployment_runtime
1414

15+
// Disabled arm64e for now since it is failing
16+
// XFAIL: CPU=arm64e
17+
1518
//
1619
// DO NOT add more tests to this file. Add them to test/1_stdlib/Runtime.swift.
1720
//

0 commit comments

Comments
 (0)