Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Open files in binary mode | Ran Benita | 2019-12-28 | 2 | -2/+2 |
| | | | | | | This turns off some misfeatures on Windows, and does nothing on POSIX. Signed-off-by: Ran Benita <ran@unusedvar.com> | ||||
* | build: include config.h manually | Ran Benita | 2019-12-27 | 2 | -0/+2 |
| | | | | | | | | | Previously we included it with an `-include` compiler directive. But that's not portable. And it's better to be explicit anyway. Every .c file should have `include "config.h"` first thing. Signed-off-by: Ran Benita <ran@unusedvar.com> | ||||
* | Add fuzzing infrastructure | Ran Benita | 2018-07-30 | 8 | -0/+295 |
Though text formats aren't exactly fuzzer's strong suit, fuzzers can catch many surface-level bugs. The fuzz/ directory contains target programs, testcases and dictionaries to drive the afl fuzzer. This commit adds a fuzzer for the XKB keymap text format and the Compose text format. On my slow machine, using a single core, a full cycle of the XKB fuzzer takes 5 hours. For Compose, it takes a few minutes. Fuzzing for the other file formats (rules files mostly) will be added later. To do some fuzzing, run `./fuzz/fuzz.sh`. Signed-off-by: Ran Benita <ran234@gmail.com> |