Revision: 20617
Author: [email protected]
Date: Wed Apr 9 12:57:43 2014 UTC
Log: Add the ability to disable tests in nosnap mode.
BUG=v8:3216
LOG=n
[email protected]
Review URL: https://codereview.chromium.org/230743002
http://code.google.com/p/v8/source/detail?r=20617
Modified:
/branches/bleeding_edge/tools/run-deopt-fuzzer.py
/branches/bleeding_edge/tools/run-tests.py
=======================================
--- /branches/bleeding_edge/tools/run-deopt-fuzzer.py Tue Feb 25 13:53:06
2014 UTC
+++ /branches/bleeding_edge/tools/run-deopt-fuzzer.py Wed Apr 9 12:57:43
2014 UTC
@@ -373,6 +373,7 @@
"isolates": options.isolates,
"mode": mode,
"no_i18n": False,
+ "no_snap": False,
"simulator": utils.UseSimulator(arch),
"system": utils.GuessOS(),
}
=======================================
--- /branches/bleeding_edge/tools/run-tests.py Thu Mar 27 10:06:53 2014 UTC
+++ /branches/bleeding_edge/tools/run-tests.py Wed Apr 9 12:57:43 2014 UTC
@@ -149,6 +149,9 @@
result.add_option("--no-presubmit", "--nopresubmit",
help='Skip presubmit checks',
default=False, dest="no_presubmit",
action="store_true")
+ result.add_option("--no-snap", "--nosnap",
+ help='Test a build compiled without snapshot.',
+ default=False, dest="no_snap", action="store_true")
result.add_option("--no-stress", "--nostress",
help="Don't run crankshaft --always-opt --stress-op
test",
default=False, dest="no_stress", action="store_true")
@@ -407,6 +410,7 @@
"isolates": options.isolates,
"mode": mode,
"no_i18n": options.no_i18n,
+ "no_snap": options.no_snap,
"simulator_run": simulator_run,
"simulator": utils.UseSimulator(arch),
"system": utils.GuessOS(),
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.