summaryrefslogtreecommitdiffstats
path: root/build/android/run_tests.py
diff options
context:
space:
mode:
authorcraigdh@chromium.org <craigdh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-09 16:52:56 +0000
committercraigdh@chromium.org <craigdh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-09 16:52:56 +0000
commit2ee5f382386ac0fdd49a8f5d860ee0f5351575d7 (patch)
treef6cc3066cc083678dd37f2f78950100960a64ede /build/android/run_tests.py
parent880aa7404c76c3446c8407c70085fd8b880a4bad (diff)
downloadchromium_src-2ee5f382386ac0fdd49a8f5d860ee0f5351575d7.zip
chromium_src-2ee5f382386ac0fdd49a8f5d860ee0f5351575d7.tar.gz
chromium_src-2ee5f382386ac0fdd49a8f5d860ee0f5351575d7.tar.bz2
[Android] Remove fast_and_loose option from the gtest runner.
It has caused pain in the past and is currently not used on the bots. BUG=168653 TEST=run_tests.py, run_tests.py -e -n 2 Review URL: https://codereview.chromium.org/11794039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175816 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android/run_tests.py')
-rwxr-xr-xbuild/android/run_tests.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/build/android/run_tests.py b/build/android/run_tests.py
index 7100acf..a4727f0 100755
--- a/build/android/run_tests.py
+++ b/build/android/run_tests.py
@@ -112,7 +112,7 @@ class TestSharder(BaseTestSharder):
def __init__(self, attached_devices, test_suite, gtest_filter,
test_arguments, timeout, cleanup_test_files, tool,
- log_dump_name, fast_and_loose, build_type, in_webkit_checkout,
+ log_dump_name, build_type, in_webkit_checkout,
flakiness_server=None):
BaseTestSharder.__init__(self, attached_devices, build_type)
self.test_suite = test_suite
@@ -122,7 +122,6 @@ class TestSharder(BaseTestSharder):
self.cleanup_test_files = cleanup_test_files
self.tool = tool
self.log_dump_name = log_dump_name
- self.fast_and_loose = fast_and_loose
self.in_webkit_checkout = in_webkit_checkout
self.flakiness_server = flakiness_server
self.all_tests = []
@@ -169,7 +168,6 @@ class TestSharder(BaseTestSharder):
self.tool,
0,
not not self.log_dump_name,
- self.fast_and_loose,
self.build_type,
self.in_webkit_checkout)
# The executable/apk needs to be copied before we can call GetAllTests.
@@ -205,7 +203,6 @@ class TestSharder(BaseTestSharder):
self.timeout,
self.cleanup_test_files, self.tool, index,
not not self.log_dump_name,
- self.fast_and_loose,
self.build_type,
self.in_webkit_checkout)
@@ -253,7 +250,7 @@ def _RunATestSuite(options):
if n > 0:
# Creates a temporary AVD for the extra emulators.
avd_name = 'run_tests_avd_%d' % n
- buildbot_emulator = emulator.Emulator(avd_name, options.fast_and_loose)
+ buildbot_emulator = emulator.Emulator(avd_name)
buildbot_emulator.Launch(kill_all_emulators=n == 0)
t.Stop()
buildbot_emulators.append(buildbot_emulator)
@@ -289,7 +286,6 @@ def _RunATestSuite(options):
options.cleanup_test_files,
options.tool,
options.log_dump,
- options.fast_and_loose,
options.build_type,
options.webkit,
options.flakiness_dashboard_server)