Rowan Hart
Rowan Hart
Simple fix, `libsoundio.a` is output in `OUT_DIR/build`, not in `OUT_DIR/lib`.
Adds some logging enhancements, including timestamps for all messages, heartbeat with current statistics, and current coverage.
Adds the link checker for mdbook to the docs CI workflow.
Several requests have been submitted to support a coverage percentage. This essentially requires taking the binary/driver/FW under test (or its debuginfo) as a parameter and doing relocation tracking to translate...
It should be pretty easy to output execution traces of solutions (and optionally all executions/interesting inputs/so forth) for easy examination. We can output these in machine-readable form so that they...
Provide options to enable deduplication of solutions: - Via stack hash - Via IP hash
Sanitizer support is tricky, because it depends on the operating system, which UEFI/BIOS doesn't have. Some testing and some possible implementation steps: - [ ] Try and build an edk2...
We should enable a pair of APIs which looks like: ``` @tsffs.iface.tsffs.set_testcase_handler(testcase_handler) ``` Where `testcase_handler` is a `Callable[[bytes], None]` which is called with the testcase input. `testcase_handler` is then responsible...
We've had several requests to re-enable the fuzzing GUI/TUI including output of additional state information like current coverage. This feature used to exist, but needs to be reworked from its...
Repro currently does nothing if it is run a second time with a different input. Instead, it should restart the repro process with the new input. Some enhancements for repro...