We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b54c2b4 commit 70a2a02Copy full SHA for 70a2a02
utils/swift-abi-symbol-checker.py
100644
100755
@@ -52,10 +52,7 @@ def checkSymbols(args):
52
# actually appear in the dylib then print those symbols out and fail.
53
if notInDylib:
54
for symbol in notInDylib:
55
- print(('{} was marked as \'Added\', but it was not found in the '
56
- 'just built library').format(symbol))
57
-
58
- sys.exit(-1)
+ symbols.append('<MISSING ADDITION> {}'.format(symbol))
59
60
# Filter the built symbols for the additions because we're removing them to
61
# get back to the baseline
0 commit comments