tests: add fuzz setup.

This commit is contained in:
davkor 2021-05-08 16:30:13 +01:00
parent 1c2e318f22
commit 9f3845e97c
No known key found for this signature in database
GPG Key ID: 0069CD4C5974232E
1 changed files with 15 additions and 0 deletions

15
tests/fuzz/sql-fuzzer.c Normal file
View File

@ -0,0 +1,15 @@
#include "qSqlparser.h"
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size){
char *new_str = (char *)malloc(size+1);
if (new_str == NULL){
return 0;
}
memcpy(new_str, data, size);
new_str[size] = '\0';
qSqlParse(new_str);
free(new_str);
return 0;
}