summaryrefslogtreecommitdiff
path: root/fuzz/atom/parser/fuzz.rs
AgeCommit message (Collapse)Author
2025-12-15gate atom parser fuzzer debug printingJohn Turner
2025-12-15check for duplicate flags in usedeps, instead of duplicate usedepsJohn Turner
2025-12-15remove static variables from atom parser fuzzerJohn Turner
Stdin and Stdout are already synchronized and available to multiple threads as needed, we don't need to hold onto instances in a static variable.
2025-12-14allow fuzzer disagreements where there are duplicated usedeps in the atomJohn Turner
Portage rejects atoms with duplicated usedeps that are otherwise valid, gentoo-utils accepts these as valid however. So we will not panic on cases of disagreement where the control side fails and we detect duplicated usedeps.
2025-12-11fix warnings in fuzzersJohn Turner
2025-12-08hookup atom parser fuzzer to read and write to stdin/stdoutJohn Turner
2025-11-22print the remaining input on fuzzer failuresJohn Turner
2025-11-18setup meson to allow building multiple fuzzers easilyJohn Turner