Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1345)

Unified Diff: third_party/WebKit/Tools/Scripts/wpt-import

Issue 2800853003: webkitpy: Unify the exit status codes. (Closed)
Patch Set: webkitpy: Unify the exit status codes. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/wpt-import
diff --git a/third_party/WebKit/Tools/Scripts/wpt-import b/third_party/WebKit/Tools/Scripts/wpt-import
index 78850d76a94b29d2b07291190bff441f770e7ddb..f8b1d5da14e897b04ae9fee66ff4d8ca7337715f 100755
--- a/third_party/WebKit/Tools/Scripts/wpt-import
+++ b/third_party/WebKit/Tools/Scripts/wpt-import
@@ -5,6 +5,7 @@
"""Pulls the latest revisions of the web-platform-tests or csswg-test repos."""
+from webkitpy.common import exit_codes
from webkitpy.common import version_check
from webkitpy.common.host import Host
from webkitpy.w3c.test_importer import TestImporter
@@ -17,4 +18,4 @@ if __name__ == '__main__':
host.exit(importer.main())
except KeyboardInterrupt:
host.print_("Interrupted, exiting")
- host.exit(130)
+ host.exit(exit_codes.INTERRUPTED_EXIT_STATUS)
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698