7
7
// RUN: %clang -E -P -x c %t.tmp/changes.txt -o - | sed '/^\s*$/d' | sort > %t.tmp/changes.txt.tmp
8
8
// RUN: diff -u %t.tmp/stability-stdlib-abi.swift.expected.sorted %t.tmp/changes.txt.tmp
9
9
10
+ // *** DO NOT DISABLE OR XFAIL THIS TEST. *** (See comment below.)
11
+
10
12
// Welcome, Build Wrangler!
11
13
//
12
- // A failure in this test indicates that there is a potential ABI breaking
13
- // change in the Standard Library. If you observe a failure, please reach out to
14
- // the Standard Library team directly to make sure we resolve this quickly!
14
+ // This file lists APIs that are unique to stdlib builds with assertions.
15
+ // (It is combined with the stability-stdlib-abi-without-asserts.test file
16
+ // to generate a full list of potentially breaking API changes. In most cases
17
+ // you'll want to edit that file instead of this one.)
18
+ //
19
+ // A failure in this test indicates that there is a potential breaking change in
20
+ // the Standard Library. If you observe a failure outside of a PR test, please
21
+ // reach out to the Standard Library team directly to make sure this gets
22
+ // resolved quickly! If your own PR fails in this test, you probably have an
23
+ // ABI- or source-breaking change in your commits. Please go and fix it.
15
24
//
16
- // Please DO NOT XFAIL THIS TEST. In addition to ignoring the current set of ABI
17
- // breaks, XFAILing this test also silences any future ABI breaks that may land
18
- // on this branch, which isn't ideal.
25
+ // Please DO NOT DISABLE THIS TEST. In addition to ignoring the current set of
26
+ // ABI breaks, XFAILing this test also silences any future ABI breaks that may
27
+ // land on this branch, which simply generates extra work for the next person
28
+ // that picks up the mess.
19
29
//
20
- // Instead, consider extending the list of expected changes at the bottom. You
21
- // can find a diff of what needs to be added in the output of the failed test
22
- // run. The order of lines doesn't matter, and you can also include comments to
23
- // refer to any bugs you filed.
30
+ // Instead of disabling this test, consider extending the list of expected
31
+ // changes at the bottom. (You'll also need to do this if your own PR triggers
32
+ // false positives, or if you have special permission to break things.) You can
33
+ // find a diff of what needs to be added in the output of the failed test run.
34
+ // The order of lines doesn't matter, and you can also include comments to refer
35
+ // to any bugs you filed. Remember that in almost all cases you'll want to edit
36
+ // the stability-stdlib-abi-without-asserts.test file instead of this one.
24
37
//
25
- // Thanks! -- Your friendly stdlib engineers
38
+ // Thank you for your help ensuring the stdlib remains compatible with its past!
39
+ // -- Your friendly stdlib engineers
26
40
27
41
// REQUIRES: swift_stdlib_asserts
28
42
43
+ // *** DO NOT DISABLE OR XFAIL THIS TEST. *** (See comment above.)
44
+
29
45
// SR-13362
30
46
// We currently only have a baseline for Intel CPUs on macOS.
31
47
// REQUIRES: OS=macosx
35
51
// declarations are shuffled. rdar://problem/46618883
36
52
// UNSUPPORTED: swift_evolve
37
53
38
- // *** DO NOT XFAIL THIS TEST *** (See comment above.)
54
+ // *** DO NOT DISABLE OR XFAIL THIS TEST. *** (See comment above.)
39
55
40
56
Func _collectReferencesInsideObject(_:) is a new API without @available attribute
41
57
Func _loadDestroyTLSCounter() is a new API without @available attribute
@@ -44,3 +60,5 @@ Protocol _RuntimeFunctionCountersStats is a new API without @available attribute
44
60
Struct _GlobalRuntimeFunctionCountersState is a new API without @available attribute
45
61
Struct _ObjectRuntimeFunctionCountersState is a new API without @available attribute
46
62
Struct _RuntimeFunctionCounters is a new API without @available attribute
63
+
64
+ // *** DO NOT DISABLE OR XFAIL THIS TEST. *** (See comment above.)
0 commit comments