Skip to content

Commit

Permalink
Make verify_exports fail on failures again (flutter#6379)
Browse files Browse the repository at this point in the history
It is now working properly on the bots.
  • Loading branch information
goderbauer authored Sep 28, 2018
1 parent c0f7c7d commit 277c895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/symbols/verify_exported.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ void main(List<String> arguments) {
int failures = 0;
failures += _checkIos(outPath, nmPath, iosReleaseBuilds);
failures += _checkAndroid(outPath, nmPath, androidReleaseBuilds);
// TODO(goderbauer): Return failing exit code on failure once it works on bots.
print('Failures: $failures'); // exit(failures);
print('Failing checks: $failures');
exit(failures);
}

int _checkIos(String outPath, String nmPath, Iterable<String> builds) {
Expand Down

0 comments on commit 277c895

Please sign in to comment.