Skip to content

[Fuzzer] Make Split's exports a list of strings#8731

Open
aheejin wants to merge 1 commit into
WebAssembly:mainfrom
aheejin:wasm_split_fuzz_fix2
Open

[Fuzzer] Make Split's exports a list of strings#8731
aheejin wants to merge 1 commit into
WebAssembly:mainfrom
aheejin:wasm_split_fuzz_fix2

Conversation

@aheejin
Copy link
Copy Markdown
Member

@aheejin aheejin commented May 20, 2026

When the export name contains a comma, such as foo<x,y>, the v8 command does not work:

v8 ... exports:foo<x,y>,bar,... --fuzz-split

This generates an exports as a list of strings within quotes, supporting export names with commas:

v8 ... exports:["foo<x,y>","bar",...] --fuzz-split

This still parses the old format of exports in case it doesn't contain commas, which I think might be useful for handwritten command lines.

When the export name contains a comma, such as `foo<x,y>`, the v8
command does not work:
```colsole
v8 ... exports:foo<x,y>,foo,bar,... --fuzz-split
```

This generates an `exports` as a list of strings within quotes,
supporting export names with commas.

This still parses the old format of `exports` in case it doesn't contain
commas, which I think might be useful for handwritten command lines.
@aheejin aheejin requested a review from kripken May 20, 2026 05:18
@aheejin aheejin requested a review from a team as a code owner May 20, 2026 05:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants