| 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',
|
|
|