summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/file_descriptor_parsenew_fuzzer.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/file_descriptor_parsenew_fuzzer.cc b/tests/file_descriptor_parsenew_fuzzer.cc
new file mode 100644
index 0000000..4166469
--- /dev/null
+++ b/tests/file_descriptor_parsenew_fuzzer.cc
@@ -0,0 +1,16 @@
+#include <cstddef>
+#include <cstdint>
+#include <cstdlib>
+
+#include "google/protobuf/descriptor.upb.h"
+#include "upb/def.h"
+#include "upb/msg.h"
+#include "upb/upb.h"
+
+extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
+ upb_strview strview =
+ upb_strview_make(reinterpret_cast<const char*>(data), size);
+ upb::Arena arena;
+ google_protobuf_FileDescriptorProto_parsenew(strview, arena.ptr());
+ return 0;
+}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback