Skip to content

Tests: Disable a number of tests for specific CI configurations #62049

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
// REQUIRES: executable_test
// UNSUPPORTED: OS=windows-msvc

// rdar://102167469
// UNSUPPORTED: CPU=arm64e

#include <cassert>
#include <cstdio>
#include "functions.h"
Expand Down
3 changes: 3 additions & 0 deletions test/Macros/macro_plugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
// FIXME: Swift parser is not enabled on Linux CI yet.
// REQUIRES: OS=macosx

// rdar://102160067
// UNSUPPORTED: CPU=arm64e

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

// CHECK: (macro_expansion_expr type='(Int, String)' {{.*}} name=customStringify
Expand Down
3 changes: 3 additions & 0 deletions test/Macros/macro_plugin_diagnostics.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
// FIXME: Swift parser is not enabled on Linux CI yet.
// REQUIRES: OS=macosx

// rdar://102160067
// UNSUPPORTED: CPU=arm64e

// 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

let _ = #customStringify(1.byteSwapped + 2.advanced(by: 10))
Expand Down
4 changes: 3 additions & 1 deletion test/expr/closure/implicit_weak_capture.swift
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// RUN: %target-run-simple-swift(-Xfrontend -disable-availability-checking)

// REQUIRES: concurrency

// REQUIRES: executable_test

// rdar://102155748
// UNSUPPORTED: back_deployment_runtime

func runIn10ms(_ closure: @escaping @Sendable () -> Void) {
Task {
try! await Task.sleep(nanoseconds: 10_000_000)
Expand Down