77// RUN: %clang -E -P -x c %t.tmp/changes.txt -o - | sed '/^\s*$/d' | sort > %t.tmp/changes.txt.tmp
88// RUN: diff -u %t.tmp/stability-stdlib-abi.swift.expected.sorted %t.tmp/changes.txt.tmp
99
10+ // *** DO NOT DISABLE OR XFAIL THIS TEST. *** (See comment below.)
11+
1012// Welcome, Build Wrangler!
1113//
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.
1524//
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.
1929//
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.
2437//
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
2640
2741// REQUIRES: swift_stdlib_asserts
2842
43+ // *** DO NOT DISABLE OR XFAIL THIS TEST. *** (See comment above.)
44+
2945// SR-13362
3046// We currently only have a baseline for Intel CPUs on macOS.
3147// REQUIRES: OS=macosx
3551// declarations are shuffled. rdar://problem/46618883
3652// UNSUPPORTED: swift_evolve
3753
38- // *** DO NOT XFAIL THIS TEST *** (See comment above.)
54+ // *** DO NOT DISABLE OR XFAIL THIS TEST. *** (See comment above.)
3955
4056Func _collectReferencesInsideObject(_:) is a new API without @available attribute
4157Func _loadDestroyTLSCounter() is a new API without @available attribute
@@ -44,3 +60,5 @@ Protocol _RuntimeFunctionCountersStats is a new API without @available attribute
4460Struct _GlobalRuntimeFunctionCountersState is a new API without @available attribute
4561Struct _ObjectRuntimeFunctionCountersState is a new API without @available attribute
4662Struct _RuntimeFunctionCounters is a new API without @available attribute
63+
64+ // *** DO NOT DISABLE OR XFAIL THIS TEST. *** (See comment above.)
0 commit comments