summaryrefslogtreecommitdiff
path: root/test/wasm2js/hello_world.2asm.js
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2020-09-21 16:58:55 -0700
committerGitHub <noreply@github.com>2020-09-21 16:58:55 -0700
commit85e0e50e86797d63912742c1c2aac0332dd2cf40 (patch)
treedb00f614759b1bff6ca3f820f9f979a936195929 /test/wasm2js/hello_world.2asm.js
parentee00f647750f23e6c24e67424bafab39b244c835 (diff)
downloadbinaryen-85e0e50e86797d63912742c1c2aac0332dd2cf40.tar.gz
binaryen-85e0e50e86797d63912742c1c2aac0332dd2cf40.tar.bz2
binaryen-85e0e50e86797d63912742c1c2aac0332dd2cf40.zip
Remove stale test output (#3157)
These test output files are ignored and so contain stale output that is neither checked during `check.py` not updated during `auto_update_tests.py`. There are three clases to tests here: 1. Spec tests that end in 64.wast are ignored by scripts/test/wasm2js.py 2. Spec tests that are globallyi ignoed by shared.py:SPEC_TESTS_TO_SKIP 3. hello_world.2asm.js.. I cant tell where this came remove it seems like an anomaly.
Diffstat (limited to 'test/wasm2js/hello_world.2asm.js')
-rw-r--r--test/wasm2js/hello_world.2asm.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/test/wasm2js/hello_world.2asm.js b/test/wasm2js/hello_world.2asm.js
deleted file mode 100644
index a7d03c37a..000000000
--- a/test/wasm2js/hello_world.2asm.js
+++ /dev/null
@@ -1,37 +0,0 @@
-
-function asmFunc(global, env, buffer) {
- var HEAP8 = new global.Int8Array(buffer);
- var HEAP16 = new global.Int16Array(buffer);
- var HEAP32 = new global.Int32Array(buffer);
- var HEAPU8 = new global.Uint8Array(buffer);
- var HEAPU16 = new global.Uint16Array(buffer);
- var HEAPU32 = new global.Uint32Array(buffer);
- var HEAPF32 = new global.Float32Array(buffer);
- var HEAPF64 = new global.Float64Array(buffer);
- var Math_imul = global.Math.imul;
- var Math_fround = global.Math.fround;
- var Math_abs = global.Math.abs;
- var Math_clz32 = global.Math.clz32;
- var Math_min = global.Math.min;
- var Math_max = global.Math.max;
- var Math_floor = global.Math.floor;
- var Math_ceil = global.Math.ceil;
- var Math_sqrt = global.Math.sqrt;
- var abort = env.abort;
- var nan = global.NaN;
- var infinity = global.Infinity;
- function add(x, y) {
- x = x | 0;
- y = y | 0;
- return x + y | 0 | 0;
- }
-
- var FUNCTION_TABLE = [];
- return {
- "add": add
- };
-}
-
-var memasmFunc = new ArrayBuffer(65536);
-var retasmFunc = asmFunc({Math,Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array,NaN,Infinity}, {abort:function() { throw new Error('abort'); }},memasmFunc);
-export var add = retasmFunc.add;