Add a Fuzzer library
[oota-llvm.git] / lib / Fuzzer / test / NullDerefTest.cpp
1 // Simple test for a fuzzer. The fuzzer must find the string "Hi!".
2 #include <cstdlib>
3 #include <cstddef>
4 #include <iostream>
5
6 static volatile int Sink;
7 static volatile int *Null = 0;
8
9 extern "C" void TestOneInput(const uint8_t *Data, size_t Size) {
10   if (Size > 0 && Data[0] == 'H') {
11     Sink = 1;
12     if (Size > 1 && Data[1] == 'i') {
13       Sink = 2;
14       if (Size > 2 && Data[2] == '!') {
15         std::cout << "Found the target, dereferencing NULL\n";
16         *Null = 1;
17       }
18     }
19   }
20 }
21