George Karpenkov | 10ab2ac | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 1 | // This file is distributed under the University of Illinois Open Source |
| 2 | // License. See LICENSE.TXT for details. |
| 3 | |
Hiroshi Inoue | 93eaad7 | 2018-01-22 07:51:37 +0000 | [diff] [blame^] | 4 | // Test the fuzzer is able to 'cleanse' the reproducer |
George Karpenkov | 10ab2ac | 2017-08-21 23:25:50 +0000 | [diff] [blame] | 5 | // by replacing all irrelevant bytes with garbage. |
| 6 | #include <cstddef> |
| 7 | #include <cstdint> |
| 8 | #include <cstdlib> |
| 9 | |
| 10 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { |
| 11 | if (Size >= 20 && Data[1] == '1' && Data[5] == '5' && Data[10] == 'A' && |
| 12 | Data[19] == 'Z') |
| 13 | abort(); |
| 14 | return 0; |
| 15 | } |
| 16 | |