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

Unified Diff: scripts/slave/recipe_modules/isolate/api.py

Issue 1378623002: chromium_tests: make IsolatedScript use run_isolated directly, not runtest (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
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
Index: scripts/slave/recipe_modules/isolate/api.py
diff --git a/scripts/slave/recipe_modules/isolate/api.py b/scripts/slave/recipe_modules/isolate/api.py
index a896d851ae363de75193bf525c959d553d603f7e..68c65cae6b0d4b4111b4a6e33224b8dcaf317d79 100644
--- a/scripts/slave/recipe_modules/isolate/api.py
+++ b/scripts/slave/recipe_modules/isolate/api.py
@@ -213,7 +213,7 @@ class IsolateApi(recipe_api.RecipeApi):
full_args.extend(args)
return full_args
- def run_isolated(self, name, isolate_hash, args=None):
+ def run_isolated(self, name, isolate_hash, args=None, **kwargs):
"""Runs an isolated test."""
cmd = [
'--isolated', isolate_hash,
@@ -223,7 +223,7 @@ class IsolateApi(recipe_api.RecipeApi):
if args:
cmd.append('--')
cmd.extend(args)
- self.m.python(name, self._run_isolated_path, cmd)
+ self.m.python(name, self._run_isolated_path, cmd, **kwargs)
def runtest(self, test, revision, webkit_revision, args=None, name=None,
**runtest_kwargs):
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/steps.py ('k') | scripts/slave/recipe_modules/isolate/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698