summaryrefslogtreecommitdiff
path: root/scripts/test/wasm2js.py
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2019-10-25 12:09:47 -0500
committerDerek Schuff <dschuff@chromium.org>2019-10-25 10:09:47 -0700
commit8d19d00268a4b1af556008bea933ede869d8a757 (patch)
treea45f4ea3bf8597a6330055a290b4fcab24b391a6 /scripts/test/wasm2js.py
parentbb41564ff8a495d19a6d41ffe7f057f241e9739c (diff)
downloadbinaryen-8d19d00268a4b1af556008bea933ede869d8a757.tar.gz
binaryen-8d19d00268a4b1af556008bea933ede869d8a757.tar.bz2
binaryen-8d19d00268a4b1af556008bea933ede869d8a757.zip
Upgrade the build container for linux releases (#2405)
This is a continued effort to try and track down #2273 which came up again and is still present in the current release binaries. Issues like crystal-lang/crystal#4276 may indicate that C++ exceptions are just somewhat broken with static linking when using alpine, but I've at least locally been able to verify that upgrading the container produces working binaries which previously segfaulted on some wasm files.
Diffstat (limited to 'scripts/test/wasm2js.py')
-rwxr-xr-xscripts/test/wasm2js.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test/wasm2js.py b/scripts/test/wasm2js.py
index 24c14680d..5e30ae0d7 100755
--- a/scripts/test/wasm2js.py
+++ b/scripts/test/wasm2js.py
@@ -94,7 +94,7 @@ def test_wasm2js_output():
fail_if_not_identical(out, '')
cmd = node[:]
cmd.append('a.2asm.asserts.mjs')
- out = run_command(cmd, expected_err='', err_ignore='The ESM module loader is experimental')
+ out = run_command(cmd, expected_err='', err_ignore='ExperimentalWarning')
fail_if_not_identical(out, '')
fail_if_not_identical_to_file(''.join(all_out), expected_file)