Stream: git-wasmtime

Topic: wasmtime / issue #6705 Update WebAssembly testsuite


view this post on Zulip Wasmtime GitHub notifications bot (Jul 07 2023 at 20:47):

abrown commented on issue #6705:

Here's where the errors start: https://github.com/bytecodealliance/wasmtime/actions/runs/5490314463/jobs/10005600074#step:16:3205.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 10 2023 at 20:02):

alexcrichton commented on issue #6705:

I think these failures are related to wasmparser and its validation, so the test suite submodule probably will need to get updated in the wasm-tools repository before it's updated here.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 15 2023 at 04:57):

alexcrichton commented on issue #6705:

With https://github.com/WebAssembly/testsuite/pull/68, https://github.com/bytecodealliance/wasm-tools/pull/1126, and publishing wasm-tools this should be good to go.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 18 2023 at 16:08):

abrown commented on issue #6705:

Ok, rebased on top of #6739.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 18 2023 at 16:29):

alexcrichton commented on issue #6705:

Oh can you also try re-updating the submodule its latest? I think that will surface a single error in tests/spec_testsuite/elem.wast:690 which I think is something we need to implement, but otherwise the other failures I think are fixed by updating the test suite

view this post on Zulip Wasmtime GitHub notifications bot (Jul 18 2023 at 20:29):

alexcrichton commented on issue #6705:

Ok I think those are legitimate failures where we accidentally don't support global.get in table element segment offset initializers.

view this post on Zulip Wasmtime GitHub notifications bot (Sep 07 2023 at 05:08):

TethysSvensson commented on issue #6705:

It seems like global.get has been a constant expression at least since 2017 (WebAssembly/spec#445). However it was not usable inside element segments until the reference types proposal landed in 2021 (WebAssembly/spec#1287). This made funcrefs/externrefs available as globals, and thus global.get became usable in element segments.

Unfortunately the interaction between this proposal and element segments was initially missed and a test was not added for it until earlier this year in WebAssembly/spec#1640. I think most wasm parsers missed this detail. For instance wabt only added support for this today in WebAssembly/wabt#2288.


Last updated: Nov 22 2024 at 16:03 UTC