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

Unified Diff: build/android/test_runner.py

Issue 294033003: Added --isolate-file-path option to android test_runner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added --isolate-file-path option Created 6 years, 7 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 | « build/android/pylib/gtest/test_options.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/test_runner.py
diff --git a/build/android/test_runner.py b/build/android/test_runner.py
index 45df772c2f40b198e514c4f8c303d1ffaaf42b9c..a0c3b72fe03e55b58ccfb099956b06fba90569e0 100755
--- a/build/android/test_runner.py
+++ b/build/android/test_runner.py
@@ -117,6 +117,11 @@ def AddGTestOptions(option_parser):
help='Timeout to wait for each test',
type='int',
default=60)
+ option_parser.add_option('--isolate_file_path',
+ '--isolate-file-path',
+ dest='isolate_file_path',
+ help='.isolate file path to override the default '
+ 'path')
# TODO(gkanwar): Move these to Common Options once we have the plumbing
# in our other test types to handle these commands
AddCommonOptions(option_parser)
@@ -505,6 +510,7 @@ def _RunGTests(options, devices):
options.run_disabled,
options.test_arguments,
options.timeout,
+ options.isolate_file_path,
suite_name)
runner_factory, tests = gtest_setup.Setup(gtest_options, devices)
« no previous file with comments | « build/android/pylib/gtest/test_options.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698