From 28c03d6206d73b9c307bea8051ca48269a8d13c0 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Thu, 26 Mar 2026 07:36:44 -0700 Subject: [PATCH] fix --- test/lit/exec/cont_export.wast | 2 +- test/lit/exec/cont_return_call.wast | 2 +- test/lit/exec/cont_simple.wast | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/lit/exec/cont_export.wast b/test/lit/exec/cont_export.wast index 8adc8cd2a9f..cc2eae7a26c 100644 --- a/test/lit/exec/cont_export.wast +++ b/test/lit/exec/cont_export.wast @@ -6,7 +6,7 @@ (type $none (func)) (type $cont (cont $none)) - (import "fuzzing-support" "log" (func $log (param i32))) + (import "fuzzing-support" "log-i32" (func $log (param i32))) (import "fuzzing-support" "call-export" (func $call-export (param i32 i32))) diff --git a/test/lit/exec/cont_return_call.wast b/test/lit/exec/cont_return_call.wast index 5e8087ec2f6..d805098f78e 100644 --- a/test/lit/exec/cont_return_call.wast +++ b/test/lit/exec/cont_return_call.wast @@ -11,7 +11,7 @@ (type $cont (cont $i32)) (type $none (func)) - (import "fuzzing-support" "log" (func $log (param i32))) + (import "fuzzing-support" "log-i32" (func $log (param i32))) (tag $tag (type $none)) diff --git a/test/lit/exec/cont_simple.wast b/test/lit/exec/cont_simple.wast index b5d958fab7f..1f0ec9fb323 100644 --- a/test/lit/exec/cont_simple.wast +++ b/test/lit/exec/cont_simple.wast @@ -12,7 +12,7 @@ (type $f-get-i32 (func (param i32))) (type $k-get-i32 (cont $f-get-i32)) - (import "fuzzing-support" "log" (func $log (param i32))) + (import "fuzzing-support" "log-i32" (func $log (param i32))) (tag $more) (tag $more-i32 (result i32))