| Index: build/android/buildbot/bb_run_bot.py
|
| diff --git a/build/android/buildbot/bb_run_bot.py b/build/android/buildbot/bb_run_bot.py
|
| index 1ecf7f08a9ec38d41ecb515030ca53eabd82c999..6644bf794285e9289375f6b1ba2ac6b242686861 100755
|
| --- a/build/android/buildbot/bb_run_bot.py
|
| +++ b/build/android/buildbot/bb_run_bot.py
|
| @@ -118,8 +118,7 @@ def GetBotStepMap():
|
| std_host_tests = ['check_webview_licenses', 'findbugs']
|
| std_build_steps = ['compile', 'zip_build']
|
| std_test_steps = ['extract_build']
|
| - std_tests = ['ui', 'unit']
|
| - fyi_tests = std_tests + ['mojo']
|
| + std_tests = ['ui', 'unit', 'mojo']
|
| telemetry_tests = ['telemetry_perf_unittests']
|
| flakiness_server = (
|
| '--flakiness-server=%s' % constants.UPSTREAM_FLAKINESS_SERVER)
|
| @@ -160,7 +159,7 @@ def GetBotStepMap():
|
| H(compile_step + std_host_tests, target_arch='x86')),
|
| B('fyi-builder-rel', H(std_build_steps, experimental)),
|
| B('fyi-tests', H(std_test_steps),
|
| - T(fyi_tests, ['--experimental', flakiness_server,
|
| + T(std_tests, ['--experimental', flakiness_server,
|
| '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])),
|
| B('fyi-component-builder-tests-dbg',
|
| H(compile_step, extra_gyp='component=shared_library'),
|
|
|