mirror of
https://github.com/vee1e/flatbuffers.git
synced 2026-09-01 17:57:25 +00:00
Add a fuzzer for flatbuffers, derived from the one used in Chromium:
https://code.google.com/p/chromium/codesearch#chromium/src/testing/libfuzzer/fuzzers/flatbuffers_verifier_fuzzer.cc (mirrored from cl 122676317) Change-Id: I0074af435cf37f5e6368b040563c3733d9e02345
This commit is contained in:
parent
208c15f29d
commit
fe9787e58d
2 changed files with 14 additions and 0 deletions
Binary file not shown.
14
tests/fuzzer/flatbuffers_verifier_fuzzer.cc
Normal file
14
tests/fuzzer/flatbuffers_verifier_fuzzer.cc
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
// Copyright 2015 The Chromium Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <string>
|
||||
|
||||
#include "third_party/flatbuffers/tests/monster_test_generated.h"
|
||||
|
||||
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
||||
flatbuffers::Verifier verifier(data, size);
|
||||
MyGame::Example::VerifyMonsterBuffer(verifier);
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue