1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Include json1.c in fuzzcheck and fuzzershell.

FossilOrigin-Name: c4b68eff7f8f5402a9abf378157767b1c96a6101
This commit is contained in:
drh
2015-09-19 14:32:51 +00:00
parent c02c4d4900
commit d7f2beab86
7 changed files with 66 additions and 32 deletions

View File

@ -601,6 +601,13 @@ int main(int argc, char **argv){
zIn = malloc(nAlloc);
if( zIn==0 ) fatalError("out of memory");
#ifdef SQLITE_ENABLE_JSON1
{
extern int sqlite3_json_init(sqlite3*);
sqlite3_auto_extension((void(*)(void))sqlite3_json_init);
}
#endif
/* Loop over all input files */
for(jj=0; jj<nInFile; jj++){