• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Makefile.amH A D08-Apr-20201 KiB4333

Makefile.inH A D03-May-202240.6 KiB826712

READMEH A D08-Apr-2020402 107

fuzz_main.cH A D08-Apr-2020970 5540

parser-test.cH A D28-Mar-20201.6 KiB8564

spectre-test.cH A D08-Apr-202012 KiB456362

spectre_read_fuzzer.cH A D06-May-20201 KiB5642

README

1Fuzz testing
2============
3
4fuzz-test is an executable used for reproducing test cases, it takes a file
5as argument and passes it to the fuzz target, set CFLAGS to enable a sanitizer,
6for example: CFLAGS="-fsanitize=address -g" ./autogen.sh; make
7
8NOTE: The executables may be linked against the system library, check with
9      `ldd fuzz-test` and use `sudo make install` as a workaround if necessary.
10