From b7eb18ebc3dfd03d9894af41682a62c4d1053e56 Mon Sep 17 00:00:00 2001 From: "kasperl@google.com" Date: Tue, 26 Aug 2008 11:42:03 +0000 Subject: Stop passing all the shell arguments as a single string. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1379 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/test/debugger/debugger_unittests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/test/debugger') diff --git a/chrome/test/debugger/debugger_unittests.py b/chrome/test/debugger/debugger_unittests.py index 9fa680e..6dd5406 100644 --- a/chrome/test/debugger/debugger_unittests.py +++ b/chrome/test/debugger/debugger_unittests.py @@ -27,9 +27,9 @@ def RunTests(build_dir=None): # look for Debug version first if not os.path.isfile(v8_shell_sample): v8_shell_sample = os.path.join(chrome_dir, "Release", "v8_shell_sample.exe") - runtime_flags = "--allow-natives-syntax --expose-debug-as debugContext" cmd = [v8_shell_sample, - runtime_flags, + "--allow-natives-syntax", + "--expose-debug-as debugContext", os.path.join(chrome_dir, "browser", "debugger", "resources", "debugger_shell.js"), # TODO Change the location of mjsunit.js from the copy in this # directory to the copy in V8 when switching to use V8 from -- cgit v1.1