mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
6d7c77ddc1
* Tweaking code so that we can run all tests with exceptions off. * Removing SIMDJSON_DISABLE_EXCEPTIONS
16 lines
347 B
C++
16 lines
347 B
C++
#include "simdjson.h"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <string>
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
|
|
#if SIMDJSON_EXCEPTIONS
|
|
try {
|
|
simdjson::dom::parser pj;
|
|
auto result=pj.parse(Data, Size);
|
|
UNUSED auto v=result.value();
|
|
}catch(...) {
|
|
}
|
|
#endif
|
|
return 0;
|
|
}
|