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

Unified Diff: build/android/buildbot/bb_host_steps.py

Issue 18323020: Updates the test runner script exit codes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Temporarily copies buildbot_report.py to buildbot 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/buildbot/bb_host_steps.py
diff --git a/build/android/buildbot/bb_host_steps.py b/build/android/buildbot/bb_host_steps.py
index 43c2d1ba9a5895ea3553b6ca1e3238ad536465dd..6949b40521c2372d9c1a5577f0d9207d51528cee 100755
--- a/build/android/buildbot/bb_host_steps.py
+++ b/build/android/buildbot/bb_host_steps.py
@@ -7,9 +7,9 @@ import os
import sys
import bb_utils
+import buildbot_report
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
-from pylib import buildbot_report
from pylib import constants
@@ -28,7 +28,7 @@ def SrcPath(*path):
def CheckWebViewLicenses(_):
buildbot_report.PrintNamedStep('check_licenses')
RunCmd([SrcPath('android_webview', 'tools', 'webview_licenses.py'), 'scan'],
- warning_code=1)
+ flunk_on_failure=False)
def RunHooks(build_type):
@@ -81,7 +81,7 @@ def ExtractBuild(options):
[os.path.join(SLAVE_SCRIPTS_DIR, 'extract_build.py'),
'--build-dir', SrcPath('build'), '--build-output-dir',
SrcPath('out')] + bb_utils.EncodeProperties(options),
- warning_code=1)
+ flunk_on_failure=False)
def FindBugs(options):

Powered by Google App Engine
This is Rietveld 408576698