blob: 7c5c8c1271372f416612b5f0842ed6d3c3a91495 [file] [log] [blame]
Aaron Ballmanef116982015-01-29 16:58:29 +00001// Simple test for a fuzzer. The fuzzer must find the string "Hi!".
2#include <cstdint>
3#include <cstdlib>
4#include <cstddef>
5#include <iostream>
6
7static volatile int Sink;
8
Kostya Serebryany566bc5a2015-05-06 22:19:00 +00009extern "C" void LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
Aaron Ballmanef116982015-01-29 16:58:29 +000010 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] == '!') {
Kostya Serebryany6d768fc2015-01-29 17:16:23 +000015 Sink = 2;
Aaron Ballmanef116982015-01-29 16:58:29 +000016 }
17 }
18 }
19}
20