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

Unified Diff: tools/test.py

Issue 7272028: added the --test option for d8 into tools/test.py (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test.py
diff --git a/tools/test.py b/tools/test.py
index cb2428cab852892c1eaa0e89106e1032e76fc723..d09f275e5be2ee374416bc12bf5052d36288b550 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -1272,6 +1272,11 @@ def ProcessOptions(options):
options.special_command += " --crankshaft"
else:
options.special_command = "@--crankshaft"
+ if options.shell == "d8":
Yang 2011/06/28 12:22:34 when using d8 as shell, include "--test" as comman
+ if options.special_command:
+ options.special_command += " --test"
+ else:
+ options.special_command = "@--test"
if options.noprof:
options.scons_flags.append("prof=off")
options.scons_flags.append("profilingsupport=off")
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698