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

Unified Diff: mojo/tools/apptest_runner.py

Issue 1303303005: Makes all tests isolated for now (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/tools/apptest_runner.py
diff --git a/mojo/tools/apptest_runner.py b/mojo/tools/apptest_runner.py
index 3257797442224654db3a9b88db76eccd428a3ef2..6494db73cb1f8dee538345343d56b32f0967bdfb 100755
--- a/mojo/tools/apptest_runner.py
+++ b/mojo/tools/apptest_runner.py
@@ -75,6 +75,10 @@ def main():
sys.stdout.flush()
assert test_type in ('gtest', 'gtest_isolated')
+ if test_type == 'gtest':
+ print ('WARNING: tests are forced to gtest_isolated until '
+ 'http://crbug.com/529487 is fixed')
+ test_type = 'gtest_isolated'
isolate = test_type == 'gtest_isolated'
(ran, fail) = gtest.run_apptest(config, shell, test_args, test, isolate)
# Ignore empty fixture lists when the commandline has a gtest filter flag.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698