| Index: scripts/slave/recipe_modules/chromium/steps.py
|
| diff --git a/scripts/slave/recipe_modules/chromium/steps.py b/scripts/slave/recipe_modules/chromium/steps.py
|
| index ce27f33a60c97d5869403a0241e59ff55e2e7ca3..b7738e0d5e17accb1649b89fe84acd9b0af056f2 100644
|
| --- a/scripts/slave/recipe_modules/chromium/steps.py
|
| +++ b/scripts/slave/recipe_modules/chromium/steps.py
|
| @@ -538,7 +538,8 @@ class TelemetryUnitTests(PythonBasedTest): # pylint: disable=W0232
|
|
|
| @staticmethod
|
| def compile_targets(_):
|
| - return ['chrome']
|
| + # Include chrome_run as filter picks up chrome and not chrome_run.
|
| + return ['chrome', 'chrome_run']
|
|
|
| def run_step(self, api, suffix, cmd_args, **kwargs):
|
| return api.chromium.run_telemetry_unittests(suffix, cmd_args, **kwargs)
|
| @@ -549,7 +550,8 @@ class TelemetryPerfUnitTests(PythonBasedTest):
|
|
|
| @staticmethod
|
| def compile_targets(_):
|
| - return ['chrome']
|
| + # Include chrome_run as filter picks up chrome and not chrome_run.
|
| + return ['chrome', 'chrome_run']
|
|
|
| def run_step(self, api, suffix, cmd_args, **kwargs):
|
| return api.chromium.run_telemetry_perf_unittests(suffix, cmd_args,
|
| @@ -561,7 +563,8 @@ class NaclIntegrationTest(Test): # pylint: disable=W0232
|
|
|
| @staticmethod
|
| def compile_targets(_):
|
| - return ['chrome']
|
| + # Include chrome_run as filter picks up chrome and not chrome_run.
|
| + return ['chrome', 'chrome_run']
|
|
|
| def run(self, api, suffix):
|
| args = [
|
|
|