added llvm

This commit is contained in:
Google AutoFuzz Team 2019-06-24 11:34:16 -04:00 committed by Jordan Bayles
parent 8e01024ce3
commit 7e69f15a64

View File

@ -2560,13 +2560,13 @@ struct FuzzTest : JsonTest::TestCase {};
// Build and run the fuzz test without any fuzzer, so that it's guaranteed not // 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. // go out of date, even if it's never run as an actual fuzz test.
//JSONTEST_FIXTURE(FuzzTest, fuzzDoesntCrash) { JSONTEST_FIXTURE(FuzzTest, fuzzDoesntCrash) {
// const std::string example = "{}"; const std::string example = "{}";
// JSONTEST_ASSERT_EQUAL( JSONTEST_ASSERT_EQUAL(
// 0, 0,
// LLVMFuzzerTestOneInput(reinterpret_cast<const uint8_t*>(example.c_str()), LLVMFuzzerTestOneInput(reinterpret_cast<const uint8_t*>(example.c_str()),
// example.size())); example.size()));
//} }
int main(int argc, const char* argv[]) { int main(int argc, const char* argv[]) {
JsonTest::Runner runner; JsonTest::Runner runner;