Chromium Code Reviews| Index: tools/bots/compiler.py |
| =================================================================== |
| --- tools/bots/compiler.py (revision 22664) |
| +++ tools/bots/compiler.py (working copy) |
| @@ -139,6 +139,10 @@ |
| else: |
| cmd.extend(['--progress=buildbot', '-v']) |
| + # TODO(ricow): temporary hack to run on fyi with --use_browser_controller |
| + if os.environ.get('BUILDBOT_SCHEDULER') == "fyi-main": |
|
kustermann
2013/05/14 13:24:10
Why not using append() as the others?
|
| + cmd.extend(['--use_browser_controller']) |
| + |
| global IsFirstTestStepCall |
| if IsFirstTestStepCall: |
| IsFirstTestStepCall = False |