diff --git a/src/test_lib_json/main.cpp b/src/test_lib_json/main.cpp index b8f2971..3fe7c01 100644 --- a/src/test_lib_json/main.cpp +++ b/src/test_lib_json/main.cpp @@ -2560,13 +2560,13 @@ struct FuzzTest : JsonTest::TestCase {}; // Build and run the fuzz test without any fuzzer, so that it's guaranteed not // go out of date, even if it's never run as an actual fuzz test. -//JSONTEST_FIXTURE(FuzzTest, fuzzDoesntCrash) { -// const std::string example = "{}"; -// JSONTEST_ASSERT_EQUAL( -// 0, -// LLVMFuzzerTestOneInput(reinterpret_cast(example.c_str()), -// example.size())); -//} +JSONTEST_FIXTURE(FuzzTest, fuzzDoesntCrash) { + const std::string example = "{}"; + JSONTEST_ASSERT_EQUAL( + 0, + LLVMFuzzerTestOneInput(reinterpret_cast(example.c_str()), + example.size())); +} int main(int argc, const char* argv[]) { JsonTest::Runner runner;