Skip to content

Commit a7330d7

Browse files
authored
[NFC] Fix logging functions in tests (#8538)
Only the proper names are recognized in our JS glue.
1 parent df5c0e0 commit a7330d7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

test/lit/exec/cont_export.wast

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
(type $none (func))
77
(type $cont (cont $none))
88

9-
(import "fuzzing-support" "log" (func $log (param i32)))
9+
(import "fuzzing-support" "log-i32" (func $log (param i32)))
1010

1111
(import "fuzzing-support" "call-export" (func $call-export (param i32 i32)))
1212

test/lit/exec/cont_return_call.wast

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
(type $cont (cont $i32))
1212
(type $none (func))
1313

14-
(import "fuzzing-support" "log" (func $log (param i32)))
14+
(import "fuzzing-support" "log-i32" (func $log (param i32)))
1515

1616
(tag $tag (type $none))
1717

test/lit/exec/cont_simple.wast

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
(type $f-get-i32 (func (param i32)))
1313
(type $k-get-i32 (cont $f-get-i32))
1414

15-
(import "fuzzing-support" "log" (func $log (param i32)))
15+
(import "fuzzing-support" "log-i32" (func $log (param i32)))
1616

1717
(tag $more)
1818
(tag $more-i32 (result i32))

0 commit comments

Comments
 (0)