mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 10:57:01 +00:00
better harness
--HG-- branch : fuzz
This commit is contained in:
parent
6d33a2b0bb
commit
a3e01b8884
@ -1,8 +1,25 @@
|
|||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
|
#include "buffer.h"
|
||||||
|
#include "dbutil.h"
|
||||||
|
|
||||||
extern int LLVMFuzzerTestOneInput(const unsigned char *data, size_t size);
|
extern int LLVMFuzzerTestOneInput(const unsigned char *data, size_t size);
|
||||||
|
|
||||||
int main(int argc, char ** argv) {
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user