From 53c7767a56580a50fda364fca32cd5b64e77d302 Mon Sep 17 00:00:00 2001 From: Michael Goderbauer Date: Fri, 28 Sep 2018 10:47:48 -0700 Subject: [PATCH] Make verify_exports fail on failures again (flutter/engine#6379) It is now working properly on the bots. --- engine/src/flutter/testing/symbols/verify_exported.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/flutter/testing/symbols/verify_exported.dart b/engine/src/flutter/testing/symbols/verify_exported.dart index 86d4f58a414..37ff8f5be5f 100644 --- a/engine/src/flutter/testing/symbols/verify_exported.dart +++ b/engine/src/flutter/testing/symbols/verify_exported.dart @@ -41,8 +41,8 @@ void main(List 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 builds) {