Skip to content

Commit 576df04

Browse files
authored
Merge pull request swiftlang#28882 from lorentey/master
[test] Mark _Differentiable tests as unsupported in Swift-in-the-OS configurations
2 parents 6cce47d + 216d02f commit 576df04

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

test/AutoDiff/Sema/derivative_attr_type_checking.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// RUN: %target-swift-frontend-typecheck -enable-experimental-differentiable-programming -verify %s
22
// REQUIRES: differentiable_programming
33

4+
// We currently lack availability information (rdar://57975086)
5+
// UNSUPPORTED: use_os_stdlib
6+
47
import _Differentiation
58

69
// Test top-level functions.

test/AutoDiff/Serialization/derivative_attr.swift

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

88
// REQUIRES: differentiable_programming
99

10+
// We currently lack availability information (rdar://57975086)
11+
// UNSUPPORTED: use_os_stdlib
12+
1013
import _Differentiation
1114

1215
// Dummy `Differentiable`-conforming type.

test/AutoDiff/Serialization/differentiable_attr.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// RUN: %target-sil-opt -disable-sil-linking -enable-sil-verify-all %t/differentiable_attr.swiftmodule -o - | %FileCheck %s
55
// REQUIRES: differentiable_programming
66

7+
// We currently lack availability information (rdar://57975086)
8+
// UNSUPPORTED: use_os_stdlib
9+
710
// TODO(TF-836): Enable this test.
811
// Blocked by TF-828: `@differentiable` attribute type-checking.
912
// XFAIL: *

test/AutoDiff/Serialization/transpose_attr.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
// BCANALYZER-NOT: UnknownCode
77
// REQUIRES: differentiable_programming
88

9+
// We currently lack availability information (rdar://57975086)
10+
// UNSUPPORTED: use_os_stdlib
11+
912
// TODO(TF-838): Enable this test.
1013
// Blocked by TF-830: `@transpose` attribute type-checking.
1114
// XFAIL: *

test/AutoDiff/stdlib/differentiable_stdlib_conformances.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// REQUIRES: executable_test
33
// REQUIRES: differentiable_programming
44

5+
// We currently lack availability information (rdar://57975086)
6+
// UNSUPPORTED: use_os_stdlib
7+
58
import _Differentiation
69

710
// Test `Differentiable` protocol conformances for stdlib types.

0 commit comments

Comments
 (0)