alexcrichton commented on issue #4410:
I might instead recommend following a similar pattern we have for fuzzing wasmtime where
log
-levels are used to control this and, when enabled, it jettisons a file out the side to be read later. In Wasmtime we emit both*.{wasm,wat}
for convenience but here it could presumably emit*.clif
perhaps?
afonso360 commented on issue #4410:
Does
cargo fuzz fmt cranelift-fuzzgen-verify <input>
cover this use case?According to the docs it prints a std::fmt::Debug for the input, which should have the function.
jameysharp commented on issue #4410:
I didn't see
cargo fuzz fmt
despite looking for all the options I could find, and yes, that does exactly what I wanted. Thanks!
Last updated: Nov 22 2024 at 16:03 UTC