Chromium Code Reviews| Index: tools/bots/editor.py |
| diff --git a/tools/bots/editor.py b/tools/bots/editor.py |
| index bb311437d0bea4cad95d760b2b5eced685dbda23..eff80a4f04c0ad98fb2337191a72d5aef791c503 100755 |
| --- a/tools/bots/editor.py |
| +++ b/tools/bots/editor.py |
| @@ -64,6 +64,8 @@ def GetEditorExecutable(mode, arch): |
| return os.path.join(editor_dir, executable) |
| def RunProcess(args): |
| + if sys.platform == 'linux': |
| + args = ['xvfb-run', '-a'] + args |
| print 'Running: %s' % (' '.join(args)) |
| sys.stdout.flush() |
| bot.RunProcess(args) |