| Index: build/android/pylib/remote/device/remote_device_gtest_run.py
|
| diff --git a/build/android/pylib/remote/device/remote_device_gtest_run.py b/build/android/pylib/remote/device/remote_device_gtest_run.py
|
| index 973eebed20669c7c79d5d70e36599fe7a076d0f7..4c645b03ba46488a5e37ff5afd727400c6ab2298 100644
|
| --- a/build/android/pylib/remote/device/remote_device_gtest_run.py
|
| +++ b/build/android/pylib/remote/device/remote_device_gtest_run.py
|
| @@ -17,10 +17,10 @@ from pylib.remote.device import remote_device_helper
|
|
|
|
|
| _EXTRA_COMMAND_LINE_FILE = (
|
| - 'org.chromium.native_test.ChromeNativeTestActivity.CommandLineFile')
|
| + 'org.chromium.native_test.NativeTestActivity.CommandLineFile')
|
| # TODO(jbudorick): Remove this extra when b/18981674 is fixed.
|
| _EXTRA_ONLY_OUTPUT_FAILURES = (
|
| - 'org.chromium.native_test.ChromeNativeTestInstrumentationTestRunner.'
|
| + 'org.chromium.native_test.NativeTestInstrumentationTestRunner.'
|
| 'OnlyOutputFailures')
|
|
|
|
|
| @@ -28,7 +28,7 @@ class RemoteDeviceGtestTestRun(remote_device_test_run.RemoteDeviceTestRun):
|
| """Run gtests and uirobot tests on a remote device."""
|
|
|
| DEFAULT_RUNNER_PACKAGE = (
|
| - 'org.chromium.native_test.ChromeNativeTestInstrumentationTestRunner')
|
| + 'org.chromium.native_test.NativeTestInstrumentationTestRunner')
|
|
|
| #override
|
| def TestPackage(self):
|
| @@ -84,4 +84,4 @@ class RemoteDeviceGtestTestRun(remote_device_test_run.RemoteDeviceTestRun):
|
| results.AddResult(base_test_result.BaseTestResult(
|
| 'Remote Service detected error.',
|
| base_test_result.ResultType.FAIL))
|
| - return results
|
| + return results
|
|
|