| Aaron Ballman | ef11698 | 2015-01-29 16:58:29 +0000 | [diff] [blame] | 1 | // 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 | |
| 7 | static volatile int Sink; |
| 8 | |
| Kostya Serebryany | 490bbd6 | 2015-05-19 22:12:57 +0000 | [diff] [blame] | 9 | static volatile int One = 1; |
| 10 | |
| Kostya Serebryany | 566bc5a | 2015-05-06 22:19:00 +0000 | [diff] [blame] | 11 | extern "C" void LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { |
| Aaron Ballman | ef11698 | 2015-01-29 16:58:29 +0000 | [diff] [blame] | 12 | if (Size > 0 && Data[0] == 'H') { |
| 13 | Sink = 1; |
| 14 | if (Size > 1 && Data[1] == 'i') { |
| 15 | Sink = 2; |
| 16 | if (Size > 2 && Data[2] == '!') { |
| Kostya Serebryany | 6d768fc | 2015-01-29 17:16:23 +0000 | [diff] [blame] | 17 | Sink = 2; |
| Kostya Serebryany | 490bbd6 | 2015-05-19 22:12:57 +0000 | [diff] [blame] | 18 | while (One) |
| 19 | ; |
| Aaron Ballman | ef11698 | 2015-01-29 16:58:29 +0000 | [diff] [blame] | 20 | } |
| 21 | } |
| 22 | } |
| 23 | } |
| 24 | |