mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-04-19 15:47:15 +02:00
10 lines
230 B
C++
10 lines
230 B
C++
#define BOOST_TEST_MODULE FUZZ_UNPACK_PACK_FUZZER
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include "../fuzz/unpack_pack_fuzzer.cpp"
|
|
|
|
BOOST_AUTO_TEST_CASE(works)
|
|
{
|
|
BOOST_CHECK_EQUAL(0, LLVMFuzzerTestOneInput(MSGPACK_NULLPTR, 0));
|
|
}
|