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

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

Issue 1128043007: Support Kerberos on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Deal with comments and build and test failures. Created 5 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_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)

Powered by Google App Engine
This is Rietveld 408576698