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
This commit is contained in:
ricow@google.com 2014-06-12 14:14:22 +00:00
parent 66b061bcd4
commit f52806ce27

View file

@ -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 = []