Skip to content

Commit 4eeb8ce

Browse files
authored
Merge pull request swiftlang#72262 from xymus/xfail-armv7k
Tests: disable many tests failing on armv7k
2 parents 9a0a072 + 26f6898 commit 4eeb8ce

File tree

5 files changed

+13
-1
lines changed

5 files changed

+13
-1
lines changed

test/DebugInfo/BuiltinStdlibTypes.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
// RUN: %target-swift-frontend %s -Onone -emit-ir -gdwarf-types -o - | %FileCheck %s
22

3+
// rdar://124465351
4+
// UNSUPPORTED: CPU=armv7k
5+
36
// File is empty as this test check for the builtin stdlib types that should
47
// always be emitted.
58

test/DebugInfo/classes.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
// RUN: %target-swift-frontend -primary-file %s -emit-ir -gdwarf-types -o - | %FileCheck %s
22

3+
// rdar://124465351
4+
// UNSUPPORTED: CPU=armv7k
5+
36
class SomeClass {
47
let first = 4
58
let second = "Hello"

test/IRGen/lto_autolink.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ import AutolinkModuleMapLink
4545

4646
// UNSUPPORTED: OS=macosx && CPU=arm64
4747
// UNSUPPORTED: OS=ios && CPU=arm64e
48-
// UNSUPPORTED: OS=watchos && CPU=arm64_32
48+
// UNSUPPORTED: OS=watchos && (CPU=arm64_32 || CPU=armv7k)
4949
// UNSUPPORTED: OS=linux-gnu && CPU=aarch64
5050
// UNSUPPORTED: CPU=wasm32

test/Interop/SwiftToCxx/enums/enum-associated-value-class-type-cxx.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
// RUN: %check-interop-cxx-header-in-clang(%t/enums.h -Wno-unused-private-field -Wno-unused-function)
66

7+
// rdar://124466216
8+
// UNSUPPORTED: CPU=armv7k
9+
710
public class C {
811
public var x: Int
912
public init(x: Int) { self.x = x }

test/SIL/moveonly_ownership.sil

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
// RUN: %target-sil-opt -test-runner %s -o /dev/null 2>&1 | %FileCheck %s
22

3+
// rdar://124466060
4+
// UNSUPPORTED: CPU=armv7k
5+
36
sil_stage raw
47

58
import Builtin

0 commit comments

Comments
 (0)