From f52806ce276a30513b05108872ea8b761227d31a Mon Sep 17 00:00:00 2001 From: "ricow@google.com" Date: Thu, 12 Jun 2014 14:14:22 +0000 Subject: [PATCH] Don't quote the arguments to xvfb This was stupid, this is clearly handled by passing the args, they should not be quoted R=whesse@google.com Review URL: https://codereview.chromium.org//326403010 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37273 260f80e4-7a28-3924-810f-c04153c831b5 --- tools/bots/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bots/compiler.py b/tools/bots/compiler.py index 64133003ecf..5c02fb9235e 100644 --- a/tools/bots/compiler.py +++ b/tools/bots/compiler.py @@ -157,7 +157,7 @@ def TestStep(name, mode, system, compiler, runtime, targets, flags, arch): with bot.BuildStep(step_name, swallow_error=True): sys.stdout.flush() if NeedsXterm(compiler, runtime) and system == 'linux': - cmd = ['xvfb-run', '-a', '--server-args="-screen 0 1024x768x24"'] + cmd = ['xvfb-run', '-a', '--server-args=-screen 0 1024x768x24'] else: cmd = []