615 строки
21 KiB
Python
Executable File
615 строки
21 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import collections
|
|
import glob
|
|
import hashlib
|
|
import json
|
|
import multiprocessing
|
|
import os
|
|
import random
|
|
import re
|
|
import shutil
|
|
import sys
|
|
|
|
import bb_utils
|
|
import bb_annotations
|
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
|
import provision_devices
|
|
from pylib import android_commands
|
|
from pylib import constants
|
|
from pylib.gtest import gtest_config
|
|
|
|
CHROME_SRC_DIR = bb_utils.CHROME_SRC
|
|
DIR_BUILD_ROOT = os.path.dirname(CHROME_SRC_DIR)
|
|
CHROME_OUT_DIR = bb_utils.CHROME_OUT_DIR
|
|
sys.path.append(os.path.join(
|
|
CHROME_SRC_DIR, 'third_party', 'android_testrunner'))
|
|
import errors
|
|
|
|
|
|
SLAVE_SCRIPTS_DIR = os.path.join(bb_utils.BB_BUILD_DIR, 'scripts', 'slave')
|
|
LOGCAT_DIR = os.path.join(bb_utils.CHROME_OUT_DIR, 'logcat')
|
|
GS_URL = 'https://storage.googleapis.com'
|
|
|
|
# Describes an instrumation test suite:
|
|
# test: Name of test we're running.
|
|
# apk: apk to be installed.
|
|
# apk_package: package for the apk to be installed.
|
|
# test_apk: apk to run tests on.
|
|
# test_data: data folder in format destination:source.
|
|
# host_driven_root: The host-driven test root directory.
|
|
# annotation: Annotation of the tests to include.
|
|
# exclude_annotation: The annotation of the tests to exclude.
|
|
I_TEST = collections.namedtuple('InstrumentationTest', [
|
|
'name', 'apk', 'apk_package', 'test_apk', 'test_data', 'host_driven_root',
|
|
'annotation', 'exclude_annotation', 'extra_flags'])
|
|
|
|
|
|
def SrcPath(*path):
|
|
return os.path.join(CHROME_SRC_DIR, *path)
|
|
|
|
|
|
def I(name, apk, apk_package, test_apk, test_data, host_driven_root=None,
|
|
annotation=None, exclude_annotation=None, extra_flags=None):
|
|
return I_TEST(name, apk, apk_package, test_apk, test_data, host_driven_root,
|
|
annotation, exclude_annotation, extra_flags)
|
|
|
|
INSTRUMENTATION_TESTS = dict((suite.name, suite) for suite in [
|
|
I('ContentShell',
|
|
'ContentShell.apk',
|
|
'org.chromium.content_shell_apk',
|
|
'ContentShellTest',
|
|
'content:content/test/data/android/device_files'),
|
|
I('ChromiumTestShell',
|
|
'ChromiumTestShell.apk',
|
|
'org.chromium.chrome.testshell',
|
|
'ChromiumTestShellTest',
|
|
'chrome:chrome/test/data/android/device_files',
|
|
constants.CHROMIUM_TEST_SHELL_HOST_DRIVEN_DIR),
|
|
I('AndroidWebView',
|
|
'AndroidWebView.apk',
|
|
'org.chromium.android_webview.shell',
|
|
'AndroidWebViewTest',
|
|
'webview:android_webview/test/data/device_files'),
|
|
])
|
|
|
|
VALID_TESTS = set(['chromedriver', 'gpu', 'ui', 'unit', 'webkit',
|
|
'webkit_layout', 'webrtc_chromium', 'webrtc_native'])
|
|
|
|
RunCmd = bb_utils.RunCmd
|
|
|
|
|
|
def _GetRevision(options):
|
|
"""Get the SVN revision number.
|
|
|
|
Args:
|
|
options: options object.
|
|
|
|
Returns:
|
|
The revision number.
|
|
"""
|
|
revision = options.build_properties.get('got_revision')
|
|
if not revision:
|
|
revision = options.build_properties.get('revision', 'testing')
|
|
return revision
|
|
|
|
|
|
# multiprocessing map_async requires a top-level function for pickle library.
|
|
def RebootDeviceSafe(device):
|
|
"""Reboot a device, wait for it to start, and squelch timeout exceptions."""
|
|
try:
|
|
android_commands.AndroidCommands(device).Reboot(True)
|
|
except errors.DeviceUnresponsiveError as e:
|
|
return e
|
|
|
|
|
|
def RebootDevices():
|
|
"""Reboot all attached and online devices."""
|
|
# Early return here to avoid presubmit dependence on adb,
|
|
# which might not exist in this checkout.
|
|
if bb_utils.TESTING:
|
|
return
|
|
devices = android_commands.GetAttachedDevices(emulator=False)
|
|
print 'Rebooting: %s' % devices
|
|
if devices:
|
|
pool = multiprocessing.Pool(len(devices))
|
|
results = pool.map_async(RebootDeviceSafe, devices).get(99999)
|
|
|
|
for device, result in zip(devices, results):
|
|
if result:
|
|
print '%s failed to startup.' % device
|
|
|
|
if any(results):
|
|
bb_annotations.PrintWarning()
|
|
else:
|
|
print 'Reboots complete.'
|
|
|
|
|
|
def RunTestSuites(options, suites):
|
|
"""Manages an invocation of test_runner.py for gtests.
|
|
|
|
Args:
|
|
options: options object.
|
|
suites: List of suite names to run.
|
|
"""
|
|
args = ['--verbose']
|
|
if options.target == 'Release':
|
|
args.append('--release')
|
|
if options.asan:
|
|
args.append('--tool=asan')
|
|
for suite in suites:
|
|
bb_annotations.PrintNamedStep(suite)
|
|
cmd = ['build/android/test_runner.py', 'gtest', '-s', suite] + args
|
|
if suite == 'content_browsertests':
|
|
cmd.append('--num_retries=1')
|
|
RunCmd(cmd)
|
|
|
|
|
|
def RunChromeDriverTests(options):
|
|
"""Run all the steps for running chromedriver tests."""
|
|
bb_annotations.PrintNamedStep('chromedriver_annotation')
|
|
RunCmd(['chrome/test/chromedriver/run_buildbot_steps.py',
|
|
'--android-packages=%s,%s,%s' %
|
|
(constants.PACKAGE_INFO['chromium_test_shell'].package,
|
|
constants.PACKAGE_INFO['chrome_stable'].package,
|
|
constants.PACKAGE_INFO['chrome_beta'].package),
|
|
'--revision=%s' % _GetRevision(options),
|
|
'--update-log'])
|
|
|
|
|
|
def InstallApk(options, test, print_step=False):
|
|
"""Install an apk to all phones.
|
|
|
|
Args:
|
|
options: options object
|
|
test: An I_TEST namedtuple
|
|
print_step: Print a buildbot step
|
|
"""
|
|
if print_step:
|
|
bb_annotations.PrintNamedStep('install_%s' % test.name.lower())
|
|
|
|
args = ['--apk', test.apk, '--apk_package', test.apk_package]
|
|
if options.target == 'Release':
|
|
args.append('--release')
|
|
|
|
RunCmd(['build/android/adb_install_apk.py'] + args, halt_on_failure=True)
|
|
|
|
|
|
def RunInstrumentationSuite(options, test, flunk_on_failure=True,
|
|
python_only=False, official_build=False):
|
|
"""Manages an invocation of test_runner.py for instrumentation tests.
|
|
|
|
Args:
|
|
options: options object
|
|
test: An I_TEST namedtuple
|
|
flunk_on_failure: Flunk the step if tests fail.
|
|
Python: Run only host driven Python tests.
|
|
official_build: Run official-build tests.
|
|
"""
|
|
bb_annotations.PrintNamedStep('%s_instrumentation_tests' % test.name.lower())
|
|
|
|
InstallApk(options, test)
|
|
args = ['--test-apk', test.test_apk, '--test_data', test.test_data,
|
|
'--verbose']
|
|
if options.target == 'Release':
|
|
args.append('--release')
|
|
if options.asan:
|
|
args.append('--tool=asan')
|
|
if options.flakiness_server:
|
|
args.append('--flakiness-dashboard-server=%s' %
|
|
options.flakiness_server)
|
|
if options.coverage_bucket:
|
|
args.append('--coverage-dir=%s' % options.coverage_dir)
|
|
if test.host_driven_root:
|
|
args.append('--host-driven-root=%s' % test.host_driven_root)
|
|
if test.annotation:
|
|
args.extend(['-A', test.annotation])
|
|
if test.exclude_annotation:
|
|
args.extend(['-E', test.exclude_annotation])
|
|
if test.extra_flags:
|
|
args.extend(test.extra_flags)
|
|
if python_only:
|
|
args.append('-p')
|
|
if official_build:
|
|
# The option needs to be assigned 'True' as it does not have an action
|
|
# associated with it.
|
|
args.append('--official-build')
|
|
|
|
RunCmd(['build/android/test_runner.py', 'instrumentation'] + args,
|
|
flunk_on_failure=flunk_on_failure)
|
|
|
|
|
|
def RunWebkitLint(target):
|
|
"""Lint WebKit's TestExpectation files."""
|
|
bb_annotations.PrintNamedStep('webkit_lint')
|
|
RunCmd([SrcPath('webkit/tools/layout_tests/run_webkit_tests.py'),
|
|
'--lint-test-files',
|
|
'--chromium',
|
|
'--target', target])
|
|
|
|
|
|
def RunWebkitLayoutTests(options):
|
|
"""Run layout tests on an actual device."""
|
|
bb_annotations.PrintNamedStep('webkit_tests')
|
|
cmd_args = [
|
|
'--no-show-results',
|
|
'--no-new-test-results',
|
|
'--full-results-html',
|
|
'--clobber-old-results',
|
|
'--exit-after-n-failures', '5000',
|
|
'--exit-after-n-crashes-or-timeouts', '100',
|
|
'--debug-rwt-logging',
|
|
'--results-directory', '../layout-test-results',
|
|
'--target', options.target,
|
|
'--builder-name', options.build_properties.get('buildername', ''),
|
|
'--build-number', str(options.build_properties.get('buildnumber', '')),
|
|
'--master-name', 'ChromiumWebkit', # TODO: Get this from the cfg.
|
|
'--build-name', options.build_properties.get('buildername', ''),
|
|
'--platform=android']
|
|
|
|
for flag in 'test_results_server', 'driver_name', 'additional_drt_flag':
|
|
if flag in options.factory_properties:
|
|
cmd_args.extend(['--%s' % flag.replace('_', '-'),
|
|
options.factory_properties.get(flag)])
|
|
|
|
for f in options.factory_properties.get('additional_expectations', []):
|
|
cmd_args.extend(
|
|
['--additional-expectations=%s' % os.path.join(CHROME_SRC_DIR, *f)])
|
|
|
|
# TODO(dpranke): Remove this block after
|
|
# https://codereview.chromium.org/12927002/ lands.
|
|
for f in options.factory_properties.get('additional_expectations_files', []):
|
|
cmd_args.extend(
|
|
['--additional-expectations=%s' % os.path.join(CHROME_SRC_DIR, *f)])
|
|
|
|
exit_code = RunCmd([SrcPath('webkit/tools/layout_tests/run_webkit_tests.py')]
|
|
+ cmd_args)
|
|
if exit_code == 255: # test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
|
|
bb_annotations.PrintMsg('?? (crashed or hung)')
|
|
elif exit_code == 254: # test_run_results.NO_DEVICES_EXIT_STATUS
|
|
bb_annotations.PrintMsg('?? (no devices found)')
|
|
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',
|
|
'full_results.json')
|
|
if os.path.exists(full_results_path):
|
|
full_results = json.load(open(full_results_path))
|
|
unexpected_passes, unexpected_failures, unexpected_flakes = (
|
|
_ParseLayoutTestResults(full_results))
|
|
if unexpected_failures:
|
|
_PrintDashboardLink('failed', unexpected_failures,
|
|
max_tests=25)
|
|
elif unexpected_passes:
|
|
_PrintDashboardLink('unexpected passes', unexpected_passes,
|
|
max_tests=10)
|
|
if unexpected_flakes:
|
|
_PrintDashboardLink('unexpected flakes', unexpected_flakes,
|
|
max_tests=10)
|
|
|
|
if exit_code == 0 and (unexpected_passes or unexpected_flakes):
|
|
# If exit_code != 0, RunCmd() will have already printed an error.
|
|
bb_annotations.PrintWarning()
|
|
else:
|
|
bb_annotations.PrintError()
|
|
bb_annotations.PrintMsg('?? (results missing)')
|
|
|
|
if options.factory_properties.get('archive_webkit_results', False):
|
|
bb_annotations.PrintNamedStep('archive_webkit_results')
|
|
base = 'https://storage.googleapis.com/chromium-layout-test-archives'
|
|
builder_name = options.build_properties.get('buildername', '')
|
|
build_number = str(options.build_properties.get('buildnumber', ''))
|
|
results_link = '%s/%s/%s/layout-test-results/results.html' % (
|
|
base, EscapeBuilderName(builder_name), build_number)
|
|
bb_annotations.PrintLink('results', results_link)
|
|
bb_annotations.PrintLink('(zip)', '%s/%s/%s/layout-test-results.zip' % (
|
|
base, EscapeBuilderName(builder_name), build_number))
|
|
gs_bucket = 'gs://chromium-layout-test-archives'
|
|
RunCmd([os.path.join(SLAVE_SCRIPTS_DIR, 'chromium',
|
|
'archive_layout_test_results.py'),
|
|
'--results-dir', '../../layout-test-results',
|
|
'--build-dir', CHROME_OUT_DIR,
|
|
'--build-number', build_number,
|
|
'--builder-name', builder_name,
|
|
'--gs-bucket', gs_bucket],
|
|
cwd=DIR_BUILD_ROOT)
|
|
|
|
|
|
def _ParseLayoutTestResults(results):
|
|
"""Extract the failures from the test run."""
|
|
# Cloned from third_party/WebKit/Tools/Scripts/print-json-test-results
|
|
tests = _ConvertTrieToFlatPaths(results['tests'])
|
|
failures = {}
|
|
flakes = {}
|
|
passes = {}
|
|
for (test, result) in tests.iteritems():
|
|
if result.get('is_unexpected'):
|
|
actual_results = result['actual'].split()
|
|
expected_results = result['expected'].split()
|
|
if len(actual_results) > 1:
|
|
# We report the first failure type back, even if the second
|
|
# was more severe.
|
|
if actual_results[1] in expected_results:
|
|
flakes[test] = actual_results[0]
|
|
else:
|
|
failures[test] = actual_results[0]
|
|
elif actual_results[0] == 'PASS':
|
|
passes[test] = result
|
|
else:
|
|
failures[test] = actual_results[0]
|
|
|
|
return (passes, failures, flakes)
|
|
|
|
|
|
def _ConvertTrieToFlatPaths(trie, prefix=None):
|
|
"""Flatten the trie of failures into a list."""
|
|
# Cloned from third_party/WebKit/Tools/Scripts/print-json-test-results
|
|
result = {}
|
|
for name, data in trie.iteritems():
|
|
if prefix:
|
|
name = prefix + '/' + name
|
|
|
|
if len(data) and 'actual' not in data and 'expected' not in data:
|
|
result.update(_ConvertTrieToFlatPaths(data, name))
|
|
else:
|
|
result[name] = data
|
|
|
|
return result
|
|
|
|
|
|
def _PrintDashboardLink(link_text, tests, max_tests):
|
|
"""Add a link to the flakiness dashboard in the step annotations."""
|
|
if len(tests) > max_tests:
|
|
test_list_text = ' '.join(tests[:max_tests]) + ' and more'
|
|
else:
|
|
test_list_text = ' '.join(tests)
|
|
|
|
dashboard_base = ('http://test-results.appspot.com'
|
|
'/dashboards/flakiness_dashboard.html#'
|
|
'master=ChromiumWebkit&tests=')
|
|
|
|
bb_annotations.PrintLink('%d %s: %s' %
|
|
(len(tests), link_text, test_list_text),
|
|
dashboard_base + ','.join(tests))
|
|
|
|
|
|
def EscapeBuilderName(builder_name):
|
|
return re.sub('[ ()]', '_', builder_name)
|
|
|
|
|
|
def SpawnLogcatMonitor():
|
|
shutil.rmtree(LOGCAT_DIR, ignore_errors=True)
|
|
bb_utils.SpawnCmd([
|
|
os.path.join(CHROME_SRC_DIR, 'build', 'android', 'adb_logcat_monitor.py'),
|
|
LOGCAT_DIR])
|
|
|
|
# Wait for logcat_monitor to pull existing logcat
|
|
RunCmd(['sleep', '5'])
|
|
|
|
|
|
def ProvisionDevices(options):
|
|
bb_annotations.PrintNamedStep('provision_devices')
|
|
|
|
if not bb_utils.TESTING:
|
|
# Restart adb to work around bugs, sleep to wait for usb discovery.
|
|
adb = android_commands.AndroidCommands()
|
|
adb.RestartAdbServer()
|
|
RunCmd(['sleep', '1'])
|
|
|
|
if options.reboot:
|
|
RebootDevices()
|
|
provision_cmd = ['build/android/provision_devices.py', '-t', options.target]
|
|
if options.auto_reconnect:
|
|
provision_cmd.append('--auto-reconnect')
|
|
RunCmd(provision_cmd)
|
|
|
|
|
|
def DeviceStatusCheck(options):
|
|
bb_annotations.PrintNamedStep('device_status_check')
|
|
cmd = ['build/android/buildbot/bb_device_status_check.py']
|
|
if options.restart_usb:
|
|
cmd.append('--restart-usb')
|
|
RunCmd(cmd, halt_on_failure=True)
|
|
|
|
|
|
def GetDeviceSetupStepCmds():
|
|
return [
|
|
('provision_devices', ProvisionDevices),
|
|
('device_status_check', DeviceStatusCheck),
|
|
]
|
|
|
|
|
|
def RunUnitTests(options):
|
|
RunTestSuites(options, gtest_config.STABLE_TEST_SUITES)
|
|
|
|
|
|
def RunInstrumentationTests(options):
|
|
for test in INSTRUMENTATION_TESTS.itervalues():
|
|
RunInstrumentationSuite(options, test)
|
|
|
|
|
|
def RunWebkitTests(options):
|
|
RunTestSuites(options, ['webkit_unit_tests'])
|
|
RunWebkitLint(options.target)
|
|
|
|
|
|
def RunWebRTCChromiumTests(options):
|
|
RunTestSuites(options, gtest_config.WEBRTC_CHROMIUM_TEST_SUITES)
|
|
|
|
|
|
def RunWebRTCNativeTests(options):
|
|
RunTestSuites(options, gtest_config.WEBRTC_NATIVE_TEST_SUITES)
|
|
|
|
|
|
def RunGPUTests(options):
|
|
InstallApk(options, INSTRUMENTATION_TESTS['ContentShell'], False)
|
|
|
|
bb_annotations.PrintNamedStep('gpu_tests')
|
|
RunCmd(['content/test/gpu/run_gpu_test',
|
|
'--browser=android-content-shell', 'pixel'])
|
|
|
|
bb_annotations.PrintNamedStep('webgl_conformance_tests')
|
|
RunCmd(['content/test/gpu/run_gpu_test',
|
|
'--browser=android-content-shell', 'webgl_conformance',
|
|
'--webgl-conformance-version=1.0.1'])
|
|
|
|
|
|
def GetTestStepCmds():
|
|
return [
|
|
('chromedriver', RunChromeDriverTests),
|
|
('gpu', RunGPUTests),
|
|
('unit', RunUnitTests),
|
|
('ui', RunInstrumentationTests),
|
|
('webkit', RunWebkitTests),
|
|
('webkit_layout', RunWebkitLayoutTests),
|
|
('webrtc_chromium', RunWebRTCChromiumTests),
|
|
('webrtc_native', RunWebRTCNativeTests),
|
|
]
|
|
|
|
|
|
def UploadHTML(options, gs_base_dir, dir_to_upload, link_text,
|
|
link_rel_path='index.html', gs_url=GS_URL):
|
|
"""Uploads directory at |dir_to_upload| to Google Storage and output a link.
|
|
|
|
Args:
|
|
options: Command line options.
|
|
gs_base_dir: The Google Storage base directory (e.g.
|
|
'chromium-code-coverage/java')
|
|
dir_to_upload: Absolute path to the directory to be uploaded.
|
|
link_text: Link text to be displayed on the step.
|
|
link_rel_path: Link path relative to |dir_to_upload|.
|
|
gs_url: Google storage URL.
|
|
"""
|
|
revision = _GetRevision(options)
|
|
bot_id = options.build_properties.get('buildername', 'testing')
|
|
randhash = hashlib.sha1(str(random.random())).hexdigest()
|
|
gs_path = '%s/%s/%s/%s' % (gs_base_dir, bot_id, revision, randhash)
|
|
RunCmd([bb_utils.GSUTIL_PATH, 'cp', '-R', dir_to_upload, 'gs://%s' % gs_path])
|
|
bb_annotations.PrintLink(link_text,
|
|
'%s/%s/%s' % (gs_url, gs_path, link_rel_path))
|
|
|
|
|
|
def GenerateJavaCoverageReport(options):
|
|
"""Generates an HTML coverage report using EMMA and uploads it."""
|
|
bb_annotations.PrintNamedStep('java_coverage_report')
|
|
|
|
coverage_html = os.path.join(options.coverage_dir, 'coverage_html')
|
|
RunCmd(['build/android/generate_emma_html.py',
|
|
'--coverage-dir', options.coverage_dir,
|
|
'--metadata-dir', os.path.join(CHROME_OUT_DIR, options.target),
|
|
'--cleanup',
|
|
'--output', os.path.join(coverage_html, 'index.html')])
|
|
return coverage_html
|
|
|
|
|
|
def LogcatDump(options):
|
|
# Print logcat, kill logcat monitor
|
|
bb_annotations.PrintNamedStep('logcat_dump')
|
|
logcat_file = os.path.join(CHROME_OUT_DIR, options.target, 'full_log')
|
|
with open(logcat_file, 'w') as f:
|
|
RunCmd([
|
|
os.path.join(CHROME_SRC_DIR, 'build', 'android',
|
|
'adb_logcat_printer.py'),
|
|
LOGCAT_DIR], stdout=f)
|
|
RunCmd(['cat', logcat_file])
|
|
|
|
|
|
def GenerateTestReport(options):
|
|
bb_annotations.PrintNamedStep('test_report')
|
|
for report in glob.glob(
|
|
os.path.join(CHROME_OUT_DIR, options.target, 'test_logs', '*.log')):
|
|
RunCmd(['cat', report])
|
|
os.remove(report)
|
|
|
|
|
|
def MainTestWrapper(options):
|
|
try:
|
|
# Spawn logcat monitor
|
|
SpawnLogcatMonitor()
|
|
|
|
# Run all device setup steps
|
|
for _, cmd in GetDeviceSetupStepCmds():
|
|
cmd(options)
|
|
|
|
if options.install:
|
|
test_obj = INSTRUMENTATION_TESTS[options.install]
|
|
InstallApk(options, test_obj, print_step=True)
|
|
|
|
if options.test_filter:
|
|
bb_utils.RunSteps(options.test_filter, GetTestStepCmds(), options)
|
|
|
|
if options.coverage_bucket:
|
|
coverage_html = GenerateJavaCoverageReport(options)
|
|
UploadHTML(options, '%s/java' % options.coverage_bucket, coverage_html,
|
|
'Coverage Report')
|
|
|
|
if options.experimental:
|
|
RunTestSuites(options, gtest_config.EXPERIMENTAL_TEST_SUITES)
|
|
|
|
finally:
|
|
# Run all post test steps
|
|
LogcatDump(options)
|
|
GenerateTestReport(options)
|
|
# KillHostHeartbeat() has logic to check if heartbeat process is running,
|
|
# and kills only if it finds the process is running on the host.
|
|
provision_devices.KillHostHeartbeat()
|
|
|
|
|
|
def GetDeviceStepsOptParser():
|
|
parser = bb_utils.GetParser()
|
|
parser.add_option('--experimental', action='store_true',
|
|
help='Run experiemental tests')
|
|
parser.add_option('-f', '--test-filter', metavar='<filter>', default=[],
|
|
action='append',
|
|
help=('Run a test suite. Test suites: "%s"' %
|
|
'", "'.join(VALID_TESTS)))
|
|
parser.add_option('--asan', action='store_true', help='Run tests with asan.')
|
|
parser.add_option('--install', metavar='<apk name>',
|
|
help='Install an apk by name')
|
|
parser.add_option('--reboot', action='store_true',
|
|
help='Reboot devices before running tests')
|
|
parser.add_option('--coverage-bucket',
|
|
help=('Bucket name to store coverage results. Coverage is '
|
|
'only run if this is set.'))
|
|
parser.add_option('--restart-usb', action='store_true',
|
|
help='Restart usb ports before device status check.')
|
|
parser.add_option(
|
|
'--flakiness-server',
|
|
help=('The flakiness dashboard server to which the results should be '
|
|
'uploaded.'))
|
|
parser.add_option(
|
|
'--auto-reconnect', action='store_true',
|
|
help='Push script to device which restarts adbd on disconnections.')
|
|
parser.add_option(
|
|
'--logcat-dump-output',
|
|
help='The logcat dump output will be "tee"-ed into this file')
|
|
|
|
return parser
|
|
|
|
|
|
def main(argv):
|
|
parser = GetDeviceStepsOptParser()
|
|
options, args = parser.parse_args(argv[1:])
|
|
|
|
if args:
|
|
return sys.exit('Unused args %s' % args)
|
|
|
|
unknown_tests = set(options.test_filter) - VALID_TESTS
|
|
if unknown_tests:
|
|
return sys.exit('Unknown tests %s' % list(unknown_tests))
|
|
|
|
setattr(options, 'target', options.factory_properties.get('target', 'Debug'))
|
|
if options.coverage_bucket:
|
|
setattr(options, 'coverage_dir',
|
|
os.path.join(CHROME_OUT_DIR, options.target, 'coverage'))
|
|
|
|
MainTestWrapper(options)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main(sys.argv))
|