summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/test/debugger/debugger_unittests.py4
1 files changed, 2 insertions, 2 deletions
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