From 0c8c062f5ec2f11e5b6e17e692aeae0ef97cab89 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Tue, 6 Apr 2021 10:09:40 -0700 Subject: Emit dollar signs when relevant while debugging s-expression elements (#3693) This is just noticeable when debugging locally and doing a quick print to stdout. --- test/wasm2js.asserts.js | 4 ++-- test/wasm2js.traps.js | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'test') diff --git a/test/wasm2js.asserts.js b/test/wasm2js.asserts.js index e2da0da5c..6ff356893 100644 --- a/test/wasm2js.asserts.js +++ b/test/wasm2js.asserts.js @@ -74,9 +74,9 @@ function check1() { return 1 | 0; } -if (!check1()) throw 'assertion failed: ( assert_return ( call empty ) )'; +if (!check1()) throw 'assertion failed: ( assert_return ( call $empty ) )'; function check2() { return (retasmFunc0.add(1 | 0, 1 | 0) | 0 | 0) == (2 | 0) | 0; } -if (!check2()) throw 'assertion failed: ( assert_return ( call add ( i32.const 1 ) ( i32.const 1 ) ) ( i32.const 2 ) )'; +if (!check2()) throw 'assertion failed: ( assert_return ( call $add ( i32.const 1 ) ( i32.const 1 ) ) ( i32.const 2 ) )'; diff --git a/test/wasm2js.traps.js b/test/wasm2js.traps.js index dfe3a5212..f5bb8477f 100644 --- a/test/wasm2js.traps.js +++ b/test/wasm2js.traps.js @@ -74,12 +74,12 @@ function check1() { return 1 | 0; } -if (!check1()) throw 'assertion failed: ( assert_return ( call empty ) )'; +if (!check1()) throw 'assertion failed: ( assert_return ( call $empty ) )'; function check2() { return (retasmFunc0.add(1 | 0, 1 | 0) | 0 | 0) == (2 | 0) | 0; } -if (!check2()) throw 'assertion failed: ( assert_return ( call add ( i32.const 1 ) ( i32.const 1 ) ) ( i32.const 2 ) )'; +if (!check2()) throw 'assertion failed: ( assert_return ( call $add ( i32.const 1 ) ( i32.const 1 ) ) ( i32.const 2 ) )'; function check3() { function f() { retasmFunc0.div_s(0 | 0, 0 | 0); @@ -93,7 +93,7 @@ function check3() { return 0; } -if (!check3()) throw 'assertion failed: ( assert_trap ( call div_s ( i32.const 0 ) ( i32.const 0 ) ) integer divide by zero )'; +if (!check3()) throw 'assertion failed: ( assert_trap ( call $div_s ( i32.const 0 ) ( i32.const 0 ) ) integer divide by zero )'; function check4() { function f() { retasmFunc0.div_s(-2147483648 | 0, -1 | 0); @@ -107,4 +107,4 @@ function check4() { return 0; } -if (!check4()) throw 'assertion failed: ( assert_trap ( call div_s ( i32.const 0x80000000 ) ( i32.const -1 ) ) integer overflow )'; +if (!check4()) throw 'assertion failed: ( assert_trap ( call $div_s ( i32.const 0x80000000 ) ( i32.const -1 ) ) integer overflow )'; -- cgit v1.2.3