Skip to content

Commit bf254cc

Browse files
authored
Merge pull request #62049 from tshortli/disable-tests
Tests: Disable a number of tests for specific CI configurations
2 parents 9ad73a6 + 1b4b7f0 commit bf254cc

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

test/Interop/SwiftToCxx/functions/swift-functions-errors-execution.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
// REQUIRES: executable_test
1212
// UNSUPPORTED: OS=windows-msvc
1313

14+
// rdar://102167469
15+
// UNSUPPORTED: CPU=arm64e
16+
1417
#include <cassert>
1518
#include <cstdio>
1619
#include "functions.h"

test/Macros/macro_plugin.swift

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
// FIXME: Swift parser is not enabled on Linux CI yet.
66
// REQUIRES: OS=macosx
77

8+
// rdar://102160067
9+
// UNSUPPORTED: CPU=arm64e
10+
811
let _ = #customStringify(1.byteSwapped + 2.advanced(by: 10))
912

1013
// CHECK: (macro_expansion_expr type='(Int, String)' {{.*}} name=customStringify

test/Macros/macro_plugin_diagnostics.swift

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
// FIXME: Swift parser is not enabled on Linux CI yet.
77
// REQUIRES: OS=macosx
88

9+
// rdar://102160067
10+
// UNSUPPORTED: CPU=arm64e
11+
912
// CHECK: <unknown>:{{.*}}: warning: compiler plugin module 'MacroDefinitionMissingAllMacros' (in {{.*}}/libMacroDefinitionMissingAllMacros.dylib) is missing a top-level computed property 'public var allMacros: [Any.Type]' to declare all macros; undeclared macros will be ignored
1013

1114
let _ = #customStringify(1.byteSwapped + 2.advanced(by: 10))

test/expr/closure/implicit_weak_capture.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
// RUN: %target-run-simple-swift(-Xfrontend -disable-availability-checking)
22

33
// REQUIRES: concurrency
4-
54
// REQUIRES: executable_test
65

6+
// rdar://102155748
7+
// UNSUPPORTED: back_deployment_runtime
8+
79
func runIn10ms(_ closure: @escaping @Sendable () -> Void) {
810
Task {
911
try! await Task.sleep(nanoseconds: 10_000_000)

0 commit comments

Comments
 (0)