Kostya Serebryany | 52a788e | 2015-03-31 20:13:20 +0000 | [diff] [blame^] | 1 | // Simple test for a fuzzer. The fuzzer must find a sequence of C++ tokens. |
| 2 | #include <cstdint> |
| 3 | #include <cstdlib> |
| 4 | #include <cstddef> |
| 5 | #include <cstring> |
| 6 | #include <iostream> |
| 7 | |
| 8 | static void Found() { |
| 9 | std::cout << "Found the target, exiting\n"; |
| 10 | exit(1); |
| 11 | } |
| 12 | |
| 13 | extern "C" void TestOneInput(const uint8_t *Data, size_t Size) { |
| 14 | // looking for "thread_local unsigned A;" |
| 15 | if (Size < 24) return; |
| 16 | if (0 == memcmp(&Data[0], "thread_local", 12)) |
| 17 | if (Data[12] == ' ') |
| 18 | if (0 == memcmp(&Data[13], "unsigned", 8)) |
| 19 | if (Data[21] == ' ') |
| 20 | if (Data[22] == 'A') |
| 21 | if (Data[23] == ';') |
| 22 | Found(); |
| 23 | } |
| 24 | |