Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(821)

Unified Diff: test/cctest/testcfg.py

Issue 12094032: Fix test harness to correctly split extra flags. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments. Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/run-tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/testcfg.py
diff --git a/test/cctest/testcfg.py b/test/cctest/testcfg.py
index 7bcccfa2cc6dcc4ffa91367bb253c633a8c08e11..86dc740576ab172e8dc74bf6f12b92cbf7beed4a 100644
--- a/test/cctest/testcfg.py
+++ b/test/cctest/testcfg.py
@@ -49,9 +49,8 @@ class CcTestSuite(testsuite.TestSuite):
if utils.IsWindows():
shell += ".exe"
output = commands.Execute(context.command_prefix +
- [shell,
- "--list",
- context.extra_flags])
+ [shell, "--list"] +
+ context.extra_flags)
if output.exit_code != 0:
print output.stdout
print output.stderr
« no previous file with comments | « no previous file | tools/run-tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698