diff options
author | Devtools Arcadia <arcadia-devtools@yandex-team.ru> | 2022-02-07 18:08:42 +0300 |
---|---|---|
committer | Devtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net> | 2022-02-07 18:08:42 +0300 |
commit | 1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch) | |
tree | e26c9fed0de5d9873cce7e00bc214573dc2195b7 /library/cpp/scheme/tests/fuzz_json/fuzz_json.cpp | |
download | ydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz |
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'library/cpp/scheme/tests/fuzz_json/fuzz_json.cpp')
-rw-r--r-- | library/cpp/scheme/tests/fuzz_json/fuzz_json.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/library/cpp/scheme/tests/fuzz_json/fuzz_json.cpp b/library/cpp/scheme/tests/fuzz_json/fuzz_json.cpp new file mode 100644 index 0000000000..8d4c0fa8a0 --- /dev/null +++ b/library/cpp/scheme/tests/fuzz_json/fuzz_json.cpp @@ -0,0 +1,6 @@ +#include <library/cpp/scheme/tests/fuzz_json/lib/fuzz_json.h> + +extern "C" int LLVMFuzzerTestOneInput(const ui8* wireData, const size_t wireSize) { + NSc::NUt::FuzzJson({(const char*)wireData, wireSize}); + return 0; +} |