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

Unified Diff: tools/run-tests.py

Issue 1828433002: wasm: hook module dump to run-tests.py (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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 | « tools/run-deopt-fuzzer.py ('k') | tools/testrunner/local/execution.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index a380c97ad3951d8f4784eb4c9d199b14b7849656..6e29226ab6c6a08961889201ea0cc4875de900e8 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -357,6 +357,12 @@ def BuildOptions():
result.add_option("--msan",
help="Regard test expectations for MSAN",
default=False, action="store_true")
+ result.add_option("--dump-wasm-module", dest="dump_wasm_module",
+ help="dump WASM module bytes",
+ default=False, action="store_true")
+ result.add_option("--dump-wasm-module-path", dest="dump_wasm_module_path",
+ help="directory to dump wasm modules to",
+ default="")
return result
@@ -695,6 +701,8 @@ def Execute(arch, mode, args, options, suites):
options.rerun_failures_max,
options.predictable,
options.no_harness,
+ options.dump_wasm_module,
+ options.dump_wasm_module_path,
use_perf_data=not options.swarming,
sancov_dir=options.sancov_dir)
« no previous file with comments | « tools/run-deopt-fuzzer.py ('k') | tools/testrunner/local/execution.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698