mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-10-17 11:05:05 +02:00
11 lines
229 B
C++
11 lines
229 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include "../fuzz/unpack_pack_fuzzer.cc"
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
|
|
|
|
TEST(FUZZ_UNPACK_PACK_FUZZER, works)
|
|
{
|
|
EXPECT_EQ(0, LLVMFuzzerTestOneInput(0, 0));
|
|
}
|