diff --git a/test/harness/async_index.js b/test/harness/async_index.js index 5418624a56..0bf70df847 100644 --- a/test/harness/async_index.js +++ b/test/harness/async_index.js @@ -118,6 +118,12 @@ function reinitializeRegistry() { maximum: 20, element: "anyfunc" }), + table64: new WebAssembly.Table({ + initial: 10, + maximum: 20, + element: "anyfunc", + address: "i64" + }), memory: new WebAssembly.Memory({ initial: 1, maximum: 2 }) }; let handler = { diff --git a/test/harness/sync_index.js b/test/harness/sync_index.js index 0785ae020b..a56e5e36d6 100644 --- a/test/harness/sync_index.js +++ b/test/harness/sync_index.js @@ -124,6 +124,7 @@ function reinitializeRegistry() { global_f32: 666.6, global_f64: 666.6, table: new WebAssembly.Table({initial: 10, maximum: 20, element: 'anyfunc'}), + table64: new WebAssembly.Table({initial: 10, maximum: 20, element: 'anyfunc', address: "i64"}), memory: new WebAssembly.Memory({initial: 1, maximum: 2}) }; let handler = {