9e20d8e6ac9c906d7f8c4317ae9b89fcc8e2fed1
[oota-llvm.git] / lib / Fuzzer / test / SimpleTest.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
8 extern "C" void TestOneInput(const uint8_t *Data, size_t Size) {
9   if (Size > 0 && Data[0] == 'H') {
10     Sink = 1;
11     if (Size > 1 && Data[1] == 'i') {
12       Sink = 2;
13       if (Size > 2 && Data[2] == '!') {
14         std::cout << "Found the target, exiting\n";
15         exit(0);
16       }
17     }
18   }
19 }
20