Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fuzz: fix debug fuzzing issues (#1869)
* fuzz: allow debug-printing components Without this feature, the fuzzer fails when running with logging enabled: ``` RUST_LOG=debug cargo +nightly fuzz run run ``` Turning on `RUST_LOG=debug` prints the generated test cases to files and certain fuzz targets (e.g., `wit64`) need to print components. * fuzz: ignore test configurations When running fuzzing with `RUST_LOG=debug`, the fuzz targets print configurations with the form `test*.config`, not `test.config`.
- Loading branch information