Kostya Serebryany | b74ba42 | 2015-07-30 02:33:45 +0000 | [diff] [blame^] | 1 | // Simple test for a fuzzer. The fuzzer must find a particular string. |
| 2 | #include <cstring> |
| 3 | #include <cstdint> |
| 4 | #include <cstdio> |
| 5 | #include <cstdlib> |
| 6 | |
| 7 | extern "C" void LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { |
| 8 | // TODO: check other sizes. |
| 9 | char *S = (char*)Data; |
| 10 | if (Size >= 8 && strncmp(S, "01234567", 8) == 0) { |
| 11 | if (Size >= 12 && strncmp(S + 8, "ABCD", 4) == 0) { |
| 12 | if (Size >= 14 && strncmp(S + 12, "XY", 2) == 0) { |
| 13 | if (Size >= 16 && strncmp(S + 14, "KLM", 3) == 0) { |
| 14 | fprintf(stderr, "BINGO\n"); |
| 15 | exit(1); |
| 16 | } |
| 17 | } |
| 18 | } |
| 19 | } |
| 20 | } |