# HG changeset patch # User Matt Johnston # Date 1495121910 -28800 # Node ID 7618759e9327a4f5e18dfd01f0094559d261406e # Parent f3c8975de38e43781c28c15eff5e3a23e32e9bb6 better harness diff -r f3c8975de38e -r 7618759e9327 fuzz-harness.c --- a/fuzz-harness.c Thu May 18 23:36:54 2017 +0800 +++ b/fuzz-harness.c Thu May 18 23:38:30 2017 +0800 @@ -1,8 +1,25 @@ #include "includes.h" +#include "buffer.h" +#include "dbutil.h" extern int LLVMFuzzerTestOneInput(const unsigned char *data, size_t size); int main(int argc, char ** argv) { - LLVMFuzzerTestOneInput("hello", 5); + int i; + buffer *input = buf_new(100000); + + for (i = 1; i < argc; i++) { + char* fn = argv[i]; + buf_setlen(input, 0); + buf_readfile(input, fn); + buf_setpos(input, 0); + + printf("Running %s\n", fn); + LLVMFuzzerTestOneInput(input->data, input->len); + printf("Done %s\n", fn); + } + + printf("Finished\n"); + return 0; }