Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion scripts/fuzz_opt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1821,7 +1821,18 @@ def ensure(self):
# run) with "second.wasm" as needed.
#
# In both cases, make sure to copy the files to a saved location first (do not
# use a path to the scratch files that get constantly overwritten).
# use a path to the scratch files that get constantly overwritten). The full
# process might look like this:
#
# * cp out/test/original.wasm first.wasm
# * cp out/test/second.wasm second.wasm
# * BINARYEN_FIRST_WASM=`pwd`/first.wasm [copied reducer command, replacing
# original.wasm with `pwd`/second.wasm]
# * cp out/test/w.wasm second.reduced.wasm
# * BINARYEN_SECOND_WASM=`pwd`/second.reduced.wasm [copied reducer command,
# replacing original.wasm
# with `pwd`/first.wasm]
#
class Two(TestCaseHandler):
# Run at relatively high priority, as this is the main place we check cross-
# module interactions.
Expand Down
Loading