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

Unified Diff: scripts/slave/recipe_modules/chromium_tests/steps.py

Issue 2226753003: Remove the android_isolate_path option from LocalGTestTest. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 4 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: scripts/slave/recipe_modules/chromium_tests/steps.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/steps.py b/scripts/slave/recipe_modules/chromium_tests/steps.py
index 3e55c4186348c49ea67187f583439ecf8c3f3cc8..4358431e2f6770b78c653e19c2913bf90407bbc1 100644
--- a/scripts/slave/recipe_modules/chromium_tests/steps.py
+++ b/scripts/slave/recipe_modules/chromium_tests/steps.py
@@ -227,7 +227,7 @@ class ScriptTest(Test): # pylint: disable=W0232
class LocalGTestTest(Test):
def __init__(self, name, args=None, target_name=None, use_isolate=False,
- revision=None, webkit_revision=None, android_isolate_path=None,
+ revision=None, webkit_revision=None,
android_shard_timeout=None, android_tool=None,
override_compile_targets=None, override_isolate_target=None,
use_xvfb=True, **runtest_kwargs):
@@ -258,7 +258,6 @@ class LocalGTestTest(Test):
self._use_isolate = use_isolate
self._revision = revision
self._webkit_revision = webkit_revision
- self._android_isolate_path = android_isolate_path
self._android_shard_timeout = android_shard_timeout
self._android_tool = android_tool
self._override_compile_targets = override_compile_targets
@@ -322,9 +321,6 @@ class LocalGTestTest(Test):
# TODO(sergiyb): Figure out if we can reuse isolate module for running
# isolated Android tests, rather than using custom solution in Android
Nico 2016/08/09 16:32:51 does this comment still makes sense? (i think so,
jbudorick 2016/08/09 16:39:26 I'm not sure. We're not even using isolate module
Sergiy Byelozyorov 2016/08/09 16:56:40 I think someone actually fixed it and did not remo
# test launcher.
- if self._android_isolate_path:
- isolate_path = api.path['checkout'].join(self._android_isolate_path)
- kwargs['isolate_file_path'] = isolate_path
jbudorick 2016/08/09 17:01:25 sergiyb: ...are you referring to this?
Sergiy Byelozyorov 2016/08/09 18:22:49 Ahem. Gotta look 10cm to the right (in a side-by-s
jbudorick 2016/08/09 19:12:52 Great, thanks. Removed the TODO.
kwargs['json_results_file'] = gtest_results_file
kwargs['flakiness_dashboard'] = 'test-results.appspot.com'
kwargs['shard_timeout'] = self._android_shard_timeout

Powered by Google App Engine
This is Rietveld 408576698