Commit a61af456 authored by navabi@chromium.org's avatar navabi@chromium.org

Revert 194601 "Android: Enable content_browsertests by default."

> Android: Enable content_browsertests by default.
> 
> BUG=138275
> 
> Review URL: https://codereview.chromium.org/13445005

TBR=nileshagrawal@chromium.org

Review URL: https://codereview.chromium.org/15042004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198770 0039d316-1c4b-4281-b951-d872f2087c98
parent 561cc0a6
...@@ -146,7 +146,7 @@ def RunBrowserTestSuite(options): ...@@ -146,7 +146,7 @@ def RunBrowserTestSuite(options):
Args: Args:
options: options object. options: options object.
""" """
args = ['--verbose', '--num_retries=1'] args = ['--verbose']
if options.target == 'Release': if options.target == 'Release':
args.append('--release') args.append('--release')
if options.asan: if options.asan:
...@@ -284,7 +284,6 @@ def MainTestWrapper(options): ...@@ -284,7 +284,6 @@ def MainTestWrapper(options):
RunChromeDriverTests() RunChromeDriverTests()
if 'unit' in options.test_filter: if 'unit' in options.test_filter:
RunTestSuites(options, gtest_config.STABLE_TEST_SUITES) RunTestSuites(options, gtest_config.STABLE_TEST_SUITES)
RunBrowserTestSuite(options)
if 'ui' in options.test_filter: if 'ui' in options.test_filter:
for test in INSTRUMENTATION_TESTS.itervalues(): for test in INSTRUMENTATION_TESTS.itervalues():
RunInstrumentationSuite(options, test) RunInstrumentationSuite(options, test)
...@@ -298,6 +297,7 @@ def MainTestWrapper(options): ...@@ -298,6 +297,7 @@ def MainTestWrapper(options):
if options.experimental: if options.experimental:
RunTestSuites(options, gtest_config.EXPERIMENTAL_TEST_SUITES) RunTestSuites(options, gtest_config.EXPERIMENTAL_TEST_SUITES)
RunBrowserTestSuite(options)
# Print logcat, kill logcat monitor # Print logcat, kill logcat monitor
buildbot_report.PrintNamedStep('logcat_dump') buildbot_report.PrintNamedStep('logcat_dump')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment