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

Unified Diff: build/android/pylib/constants.py

Issue 18323020: Updates the test runner script exit codes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Makes several minor fixes Created 7 years, 5 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
Index: build/android/pylib/constants.py
diff --git a/build/android/pylib/constants.py b/build/android/pylib/constants.py
index 519cc973634aac792307fd4082e0ad440e7e8b52..b8e22f2fc4a8517d02c7d79b2f63f7cc7a3585c3 100644
--- a/build/android/pylib/constants.py
+++ b/build/android/pylib/constants.py
@@ -6,7 +6,6 @@
import os
import subprocess
-import sys
DIR_SOURCE_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__),
@@ -98,3 +97,8 @@ def _GetADBPath():
ADB_PATH = _GetADBPath()
+
+# Exit codes
+NORMAL_EXIT_CODE = 0
+ERROR_EXIT_CODE = 1
+WARNING_EXIT_CODE = 88

Powered by Google App Engine
This is Rietveld 408576698