Index: build/android/pylib/gtest/test_package_exe.py |
diff --git a/build/android/pylib/gtest/test_package_exe.py b/build/android/pylib/gtest/test_package_exe.py |
index 87071b5bd4c186352b1971445f6573cdbcc78a76..5574453e3f9b5639951a5f3589a26d5f9e028f87 100644 |
--- a/build/android/pylib/gtest/test_package_exe.py |
+++ b/build/android/pylib/gtest/test_package_exe.py |
@@ -127,7 +127,10 @@ class TestPackageExecutable(TestPackage): |
return gtest_test_instance.ParseGTestListTests(output) |
#override |
- def SpawnTestProcess(self, device): |
+ def SpawnTestProcess(self, device, tests_run_in_subthread=False): |
+ if tests_run_in_subthread: |
+ raise NotImplementedError( |
+ 'tests_run_in_subthread not supported for executables') |
args = ['adb', '-s', str(device), 'shell', 'sh', |
constants.TEST_EXECUTABLE_DIR + '/chrome_test_runner.sh'] |
logging.info(args) |