Skip to content

Commit a143afd

Browse files
committed
fix more test regressions
Note that this temporarily updates the `tests/component-model` submodule to the branch for WebAssembly/component-model#577 until that PR is merged. Signed-off-by: Joel Dice <joel.dice@fermyon.com>
1 parent 99419dc commit a143afd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/misc_testsuite/component-model-threading/stackful-cancellation.wast

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,15 +222,15 @@
222222
(export "waitable-set.new" (func $waitable-set.new))))
223223
(with "libc" (instance $libc))))
224224

225-
(func (export "run-yield") (result u32) (canon lift (core func $cm "run-yield") async))
225+
(func (export "run-yield") async (result u32) (canon lift (core func $cm "run-yield") async))
226226
(func (export "run-yield-to") async (param "fut" $FT) (result u32) (canon lift (core func $cm "run-yield-to") async))
227227
(func (export "run-suspend") async (param "fut" $FT) (result u32) (canon lift (core func $cm "run-suspend") async))
228228
(func (export "run-switch-to") async (param "fut" $FT) (result u32) (canon lift (core func $cm "run-switch-to") async))
229229
)
230230

231231
(component $D
232232
(type $FT (future))
233-
(import "run-yield" (func $run-yield (result u32)))
233+
(import "run-yield" (func $run-yield async (result u32)))
234234
(import "run-yield-to" (func $run-yield-to async (param "fut" $FT) (result u32)))
235235
(import "run-suspend" (func $run-suspend async (param "fut" $FT) (result u32)))
236236
(import "run-switch-to" (func $run-switch-to async (param "fut" $FT) (result u32)))

0 commit comments

Comments
 (0)