From 5f489fc7198639b6e722c7f4c438c3f8e4d54866 Mon Sep 17 00:00:00 2001 From: Karoy Lorentey Date: Tue, 14 Jul 2020 18:55:41 -0700 Subject: [PATCH] [test] Fix architecture conditional rdar://64995079 --- test/stdlib/NSValueBridging.swift.gyb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/stdlib/NSValueBridging.swift.gyb b/test/stdlib/NSValueBridging.swift.gyb index 6ca31835917ba..83e9b5bb63fa7 100644 --- a/test/stdlib/NSValueBridging.swift.gyb +++ b/test/stdlib/NSValueBridging.swift.gyb @@ -15,8 +15,6 @@ // RUN: %target-codesign %t.out // RUN: %target-run %t.out // REQUIRES: executable_test -// rdar://problem/64995079 -// XFAIL: OS=ios && CPU=armv7s // // REQUIRES: objc_interop @@ -73,7 +71,7 @@ ${ testCase("CGAffineTransform", "CGAffineTransform(rotationAngle: .pi)", N // // FIXME: Test back-deployment scenarios with the Swift 5.0 compatibility // runtime rather than a freshly built stdlib. (rdar://62694723) -#if canImport(UIKit) && !(os(iOS) && (arch(armv7) || arch(armv7s) || arch(i386))) +#if canImport(UIKit) && !(os(iOS) && (arch(arm) || arch(i386))) import UIKit ${ testCase("CGRect", "CGRect(x: 17, y: 38, width: 6, height: 79)", "cgRect", "(==)") }