[libFuzzer] add UninstrumentedTest.cpp (missing from a previous commit)

llvm-svn: 252658
This commit is contained in:
Kostya Serebryany 2015-11-10 22:02:56 +00:00
parent 5d16a4752f
commit b7e286bed7
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
// This test should not be instrumented.
#include <cstdint>
#include <cstddef>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
return 0;
}