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

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

Issue 18732002: Revert 210035 "Creates a new test running script test_runner.py" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 5 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: trunk/src/build/android/pylib/gtest/test_package_apk.py
===================================================================
--- trunk/src/build/android/pylib/gtest/test_package_apk.py (revision 210250)
+++ trunk/src/build/android/pylib/gtest/test_package_apk.py (working copy)
@@ -2,7 +2,6 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-"""Defines TestPackageApk to help run APK-based native tests."""
import logging
import os
@@ -97,7 +96,7 @@
self._StartActivity()
# Wait for native test to complete.
p = self._WatchFifo(timeout=30 * self.tool.GetTimeoutScale())
- p.expect('<<ScopedMainEntryLogger')
+ p.expect("<<ScopedMainEntryLogger")
p.close()
finally:
self.tool.CleanUpEnvironment()
@@ -106,8 +105,8 @@
ret = self._ParseGTestListTests(content)
return ret
- def CreateTestRunnerScript(self, test_filter, test_arguments):
- self._CreateTestRunnerScript('--gtest_filter=%s %s' % (test_filter,
+ def CreateTestRunnerScript(self, gtest_filter, test_arguments):
+ self._CreateTestRunnerScript('--gtest_filter=%s %s' % (gtest_filter,
test_arguments))
def RunTestsAndListResults(self):
« no previous file with comments | « trunk/src/build/android/pylib/gtest/dispatch.py ('k') | trunk/src/build/android/pylib/gtest/test_package_executable.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698