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

Unified Diff: tools/testrunner/objects/context.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/testrunner/local/execution.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testrunner/objects/context.py
diff --git a/tools/testrunner/objects/context.py b/tools/testrunner/objects/context.py
index 6bcbfb67aa4d64612a3afccf1a9ef45fa119804a..916536e9c60d3d9d582a7deff97c459999ae4d95 100644
--- a/tools/testrunner/objects/context.py
+++ b/tools/testrunner/objects/context.py
@@ -30,7 +30,8 @@ class Context():
def __init__(self, arch, mode, shell_dir, mode_flags, verbose, timeout,
isolates, command_prefix, extra_flags, noi18n, random_seed,
no_sorting, rerun_failures_count, rerun_failures_max,
- predictable, no_harness, use_perf_data, sancov_dir):
+ predictable, no_harness, dump_wasm_module,
+ dump_wasm_module_path, use_perf_data, sancov_dir):
self.arch = arch
self.mode = mode
self.shell_dir = shell_dir
@@ -47,6 +48,8 @@ class Context():
self.rerun_failures_max = rerun_failures_max
self.predictable = predictable
self.no_harness = no_harness
+ self.dump_wasm_module = dump_wasm_module
+ self.dump_wasm_module_path = dump_wasm_module_path
self.use_perf_data = use_perf_data
self.sancov_dir = sancov_dir
@@ -55,6 +58,7 @@ class Context():
self.command_prefix, self.extra_flags, self.noi18n,
self.random_seed, self.no_sorting, self.rerun_failures_count,
self.rerun_failures_max, self.predictable, self.no_harness,
+ self.dump_wasm_module, self.dump_wasm_module_path,
self.use_perf_data, self.sancov_dir]
@staticmethod
@@ -63,4 +67,4 @@ class Context():
return Context(packed[0], packed[1], None, packed[2], False,
packed[3], packed[4], packed[5], packed[6], packed[7],
packed[8], packed[9], packed[10], packed[11], packed[12],
- packed[13], packed[14], packed[15])
+ packed[13], packed[14], packed[15], packed[16], packed[17])
« no previous file with comments | « tools/testrunner/local/execution.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698