From: mstarzinger@chromium.org Date: Tue, 27 Sep 2011 12:12:25 +0000 (+0000) Subject: Fix passing of --special-command flag in test wrapper. X-Git-Tag: upstream/4.7.83~18350 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9f8d2d4f0ec4d94f5b426479d19a82d48fe17f0f;p=platform%2Fupstream%2Fv8.git Fix passing of --special-command flag in test wrapper. R=jkummerow@chromium.org Review URL: http://codereview.chromium.org/8056004 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9450 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/tools/test-wrapper-gypbuild.py b/tools/test-wrapper-gypbuild.py index 51ff791..a990b7e 100755 --- a/tools/test-wrapper-gypbuild.py +++ b/tools/test-wrapper-gypbuild.py @@ -169,7 +169,7 @@ def PassOnOptions(options): if options.snapshot: result += ['--snapshot'] if options.special_command: - result += ['--special-command=' + options.special_command] + result += ['--special-command="%s"' % options.special_command] if options.valgrind: result += ['--valgrind'] if options.cat: