From b7e286bed7d7e7c044a54785f30ca26894fda6b2 Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Tue, 10 Nov 2015 22:02:56 +0000 Subject: [libFuzzer] add UninstrumentedTest.cpp (missing from a previous commit) llvm-svn: 252658 --- llvm/lib/Fuzzer/test/UninstrumentedTest.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 llvm/lib/Fuzzer/test/UninstrumentedTest.cpp (limited to 'llvm/lib') diff --git a/llvm/lib/Fuzzer/test/UninstrumentedTest.cpp b/llvm/lib/Fuzzer/test/UninstrumentedTest.cpp new file mode 100644 index 00000000000..c1730198d83 --- /dev/null +++ b/llvm/lib/Fuzzer/test/UninstrumentedTest.cpp @@ -0,0 +1,8 @@ +// This test should not be instrumented. +#include +#include + +extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { + return 0; +} + -- cgit v1.2.3