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

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

Issue 29653003: Fix error message values in bb_device_steps.py after r229193 (Build fix). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/buildbot/bb_device_steps.py
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py
index 41256f9858b146637a221e525e914f796da262c5..7129f370d9c031af5b92f6fdb9da968ec6b16c29 100755
--- a/build/android/buildbot/bb_device_steps.py
+++ b/build/android/buildbot/bb_device_steps.py
@@ -263,11 +263,11 @@ def RunWebkitLayoutTests(options):
exit_code = RunCmd(['webkit/tools/layout_tests/run_webkit_tests.py'] +
cmd_args)
- if exit_code == 254: # test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
+ if exit_code == 255: # test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
bb_annotations.PrintMsg('?? (crashed or hung)')
- elif exit_code == 253: # test_run_results.NO_DEVICES_EXIT_STATUS
+ elif exit_code == 254: # test_run_results.NO_DEVICES_EXIT_STATUS
bb_annotations.PrintMsg('?? (no devices found)')
- elif exit_code == 252: # test_run_results.NO_TESTS_EXIT_STATUS
+ elif exit_code == 253: # test_run_results.NO_TESTS_EXIT_STATUS
bb_annotations.PrintMsg('?? (no tests found)')
else:
full_results_path = os.path.join('..', 'layout-test-results',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698