Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(890)

Unified Diff: build/android/pylib/test_package_executable.py

Issue 11575019: Remove --performance_test from Android gtest runner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/pylib/test_package_apk.py ('k') | build/android/run_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/test_package_executable.py
diff --git a/build/android/pylib/test_package_executable.py b/build/android/pylib/test_package_executable.py
index d9afc8ae219774df32d657ed424857f6953d3b8f..cafe99c1c2342a9a51c7a9b60fe989ffee0f94bb 100644
--- a/build/android/pylib/test_package_executable.py
+++ b/build/android/pylib/test_package_executable.py
@@ -21,7 +21,7 @@ class TestPackageExecutable(TestPackage):
_TEST_RUNNER_RET_VAL_FILE = 'gtest_retval'
def __init__(self, adb, device, test_suite, timeout,
- performance_test, cleanup_test_files, tool, dump_debug_info,
+ cleanup_test_files, tool, dump_debug_info,
symbols_dir=None):
"""
Args:
@@ -29,15 +29,13 @@ class TestPackageExecutable(TestPackage):
device: Device to run the tests.
test_suite: A specific test suite to run, empty to run all.
timeout: Timeout for each test.
- performance_test: Whether or not performance test(s).
cleanup_test_files: Whether or not to cleanup test files on device.
tool: Name of the Valgrind tool.
dump_debug_info: A debug_info object.
symbols_dir: Directory to put the stripped binaries.
"""
TestPackage.__init__(self, adb, device, test_suite, timeout,
- performance_test, cleanup_test_files,
- tool, dump_debug_info)
+ cleanup_test_files, tool, dump_debug_info)
self.symbols_dir = symbols_dir
def _GetGTestReturnCode(self):
« no previous file with comments | « build/android/pylib/test_package_apk.py ('k') | build/android/run_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698