From: Kostya Serebryany Date: Tue, 10 Nov 2015 22:02:56 +0000 (+0000) Subject: [libFuzzer] add UninstrumentedTest.cpp (missing from a previous commit) X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=f357e6fb5fc0f10023f236cd5f3e252ca0dd6f07 [libFuzzer] add UninstrumentedTest.cpp (missing from a previous commit) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252658 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Fuzzer/test/UninstrumentedTest.cpp b/lib/Fuzzer/test/UninstrumentedTest.cpp new file mode 100644 index 00000000000..c1730198d83 --- /dev/null +++ b/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; +} +