mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-05-02 15:41:38 +02:00

- Enhance CMakeLists.txt files. - Move to Boost Test from Google Test to support pre-C++11 compilers. - Add more configurations on CI matrix builds. - Other minor fixes
10 lines
226 B
C++
10 lines
226 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, FuzzerTestOneInput(MSGPACK_NULLPTR, 0));
|
|
}
|