From 1e9838e7f9e3777e12e4f221a3281e73edce1c15 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Mon, 12 Feb 2024 12:24:04 -0800 Subject: Fuzz shell: Add a j2wasm import (#6296) With this, the fuzz shell can run a hello world Java file compiled by j2wasm. --- scripts/fuzz_shell.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'scripts/fuzz_shell.js') diff --git a/scripts/fuzz_shell.js b/scripts/fuzz_shell.js index 217727c91..08864dfc7 100644 --- a/scripts/fuzz_shell.js +++ b/scripts/fuzz_shell.js @@ -174,6 +174,15 @@ var imports = { }, }; +// If Tags are available, add the import j2wasm expects. +if (typeof WebAssembly.Tag !== 'undefined') { + imports['imports'] = { + 'j2wasm.ExceptionUtils.tag': new WebAssembly.Tag({ + 'parameters': ['externref'] + }), + }; +} + imports = Asyncify.instrumentImports(imports); // Create the wasm. -- cgit v1.2.3