diff options
author | frankf@google.com <frankf@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-18 22:01:09 +0000 |
---|---|---|
committer | frankf@google.com <frankf@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-18 22:01:09 +0000 |
commit | 161dbcfac6c6548e2dbfe075834c540813b93929 (patch) | |
tree | 04ff845616f54f34c6fa769814a2c1d91fde59db /build/android/pylib/test_options_parser.py | |
parent | 0b0e31468adbbd409d8c931c87997eeb138f2211 (diff) | |
download | chromium_src-161dbcfac6c6548e2dbfe075834c540813b93929.zip chromium_src-161dbcfac6c6548e2dbfe075834c540813b93929.tar.gz chromium_src-161dbcfac6c6548e2dbfe075834c540813b93929.tar.bz2 |
Refactor android test results logging.
BUG=165529
Review URL: https://codereview.chromium.org/11616010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173795 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android/pylib/test_options_parser.py')
-rw-r--r-- | build/android/pylib/test_options_parser.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/android/pylib/test_options_parser.py b/build/android/pylib/test_options_parser.py index d88e997..65399aa 100644 --- a/build/android/pylib/test_options_parser.py +++ b/build/android/pylib/test_options_parser.py @@ -73,6 +73,10 @@ def AddTestRunnerOptions(option_parser, default_timeout=60): dest='tool', help='Run the test under a tool ' '(use --tool help to list them)') + option_parser.add_option('--flakiness-dashboard-server', + dest='flakiness_dashboard_server', + help=('Address of the server that is hosting the ' + 'Chrome for Android flakiness dashboard.')) AddBuildTypeOption(option_parser) @@ -126,10 +130,6 @@ def AddInstrumentationOptions(option_parser): 'kept. When this is run via a sharder ' 'the test server ports should be kept and ' 'should not be reset.') - option_parser.add_option('--flakiness-dashboard-server', - dest='flakiness_dashboard_server', - help=('Address of the server that is hosting the ' - 'Chrome for Android flakiness dashboard.')) option_parser.add_option('--buildbot-step-failure', action='store_true', help=('If present, will set the buildbot status ' |