You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 8, 2025. It is now read-only.
$ cargo run --features component-model-async wast foo.wast -W component-model-async
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.10s
Running `target/debug/wasmtime wast foo.wast -W component-model-async`
Error: failed to run script file 'foo.wast'
Caused by:
0: failed directive on foo.wast:65:1
1: expected trap, got Component([])
Specifically close-readable, which should trap, is not trapping. Additionally close-writable-after-roundtrip, which should trap, is also not trapping.
I found this poking around conceptually in the spec about what happens if you lower a writable end as a readable end, then close the writable end, then get back the readable end.
This test
currently fails with:
Specifically
close-readable, which should trap, is not trapping. Additionallyclose-writable-after-roundtrip, which should trap, is also not trapping.I found this poking around conceptually in the spec about what happens if you lower a writable end as a readable end, then close the writable end, then get back the readable end.