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

Unified Diff: build/android/pylib/gtest/test_package_apk.py

Issue 15942016: Creates a new test running script test_runner.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Several more fixes Created 7 years, 6 months 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
Index: build/android/pylib/gtest/test_package_apk.py
diff --git a/build/android/pylib/gtest/test_package_apk.py b/build/android/pylib/gtest/test_package_apk.py
index 8b9badb3a0aa43dd90d5b123537d487de0dd3703..2a9c769eab5bd450c2d8a8b83bcf28dbb5255dcf 100644
--- a/build/android/pylib/gtest/test_package_apk.py
+++ b/build/android/pylib/gtest/test_package_apk.py
@@ -105,8 +105,8 @@ class TestPackageApk(TestPackage):
ret = self._ParseGTestListTests(content)
return ret
- def CreateTestRunnerScript(self, gtest_filter, test_arguments):
- self._CreateTestRunnerScript('--gtest_filter=%s %s' % (gtest_filter,
+ def CreateTestRunnerScript(self, test_filter, test_arguments):
+ self._CreateTestRunnerScript('--gtest_filter=%s %s' % (test_filter,
test_arguments))
def RunTestsAndListResults(self):

Powered by Google App Engine
This is Rietveld 408576698