Skip to content

Commit 70a2a02

Browse files
committed
[util] swift-abi-symbol-checker: Don’t exit early for missing additions
1 parent b54c2b4 commit 70a2a02

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

utils/swift-abi-symbol-checker.py

100644100755
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,7 @@ def checkSymbols(args):
5252
# actually appear in the dylib then print those symbols out and fail.
5353
if notInDylib:
5454
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)
55+
symbols.append('<MISSING ADDITION> {}'.format(symbol))
5956

6057
# Filter the built symbols for the additions because we're removing them to
6158
# get back to the baseline

0 commit comments

Comments
 (0)