| Index: scripts/master/factory/commands.py
|
| diff --git a/scripts/master/factory/commands.py b/scripts/master/factory/commands.py
|
| index 10846b896f1090a3403b9d3234b2fc93798febea..29893f515e4fa67e405e5d17685eba8782831f7c 100644
|
| --- a/scripts/master/factory/commands.py
|
| +++ b/scripts/master/factory/commands.py
|
| @@ -563,6 +563,8 @@ class FactoryCommands(object):
|
| if sharding_args:
|
| cmd.extend(['--sharding-args', sharding_args])
|
|
|
| + env = factory_properties.get('testing_env')
|
| +
|
| cmd.append(self.GetExecutableName(test_name))
|
|
|
| arg_list.append('--gtest_print_time')
|
| @@ -571,7 +573,7 @@ class FactoryCommands(object):
|
|
|
| self.AddTestStep(chromium_step.AnnotatedCommand, test_name,
|
| ListProperties(cmd), description, do_step_if=doStep,
|
| - br_do_step_if=brDoStep, hide_step_if=hideStep,
|
| + env=env, br_do_step_if=brDoStep, hide_step_if=hideStep,
|
| target=self._target, factory_properties=factory_properties)
|
|
|
| def AddBuildStep(self, factory_properties, name='build', env=None,
|
|
|