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

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

Issue 2549363004: Multiprocess test client: Android child process launcher rework. (Closed)
Patch Set: Fixed tests Created 4 years 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/gtest_test_instance.py
diff --git a/build/android/pylib/gtest/gtest_test_instance.py b/build/android/pylib/gtest/gtest_test_instance.py
index 3cdf586a48feadeddbcede2b9cda21b1b17197f0..0aa145bdd167f7e6f6bfdfb82228a086723c4995 100644
--- a/build/android/pylib/gtest/gtest_test_instance.py
+++ b/build/android/pylib/gtest/gtest_test_instance.py
@@ -25,7 +25,15 @@ BROWSER_TEST_SUITES = [
'content_browsertests',
]
-RUN_IN_SUB_THREAD_TEST_SUITES = ['net_unittests']
+RUN_IN_SUB_THREAD_TEST_SUITES = [
+ # Multiprocess tests should be run outside of the main thread.
+ 'base_unittests', # file_locking_unittest.cc uses a child process.
+ 'ipc_perftests',
+ 'ipc_tests',
+ 'mojo_public_bindings_perftests',
+ 'mojo_system_unittests',
+ 'net_unittests'
+]
# Used for filtering large data deps at a finer grain than what's allowed in

Powered by Google App Engine
This is Rietveld 408576698