view fuzz-harness.c @ 1361:f9f930e1a516 fuzz

add dbmalloc epoch cleanup
author Matt Johnston <matt@ucc.asn.au>
date Sun, 21 May 2017 10:54:11 +0800
parents 6b89eb92f872
children b2f295125ed6
line wrap: on
line source

#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) {
    int i;
    buffer *input = buf_new(100000);

#if DROPBEAR_TRACE
    debug_trace = 1;
#endif

    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 once \n", fn);
        LLVMFuzzerTestOneInput(input->data, input->len);
        printf("Running %s twice \n", fn);
        LLVMFuzzerTestOneInput(input->data, input->len);
        printf("Done %s\n", fn);
    }

    printf("Finished\n");

    return 0;
}