blob: ee18457012693c68266d4a7a7cd7bba7a7e5496f [file] [log] [blame]
Kostya Serebryanyac7a9ea2017-04-17 20:58:21 +00001// This file is distributed under the University of Illinois Open Source
2// License. See LICENSE.TXT for details.
3
4// Test the the fuzzer is able to 'cleanse' the reproducer
5// by replacing all irrelevant bytes with garbage.
Chandler Carruth6bda14b2017-06-06 11:49:48 +00006#include <cstddef>
Kostya Serebryanyac7a9ea2017-04-17 20:58:21 +00007#include <cstdint>
8#include <cstdlib>
Kostya Serebryanyac7a9ea2017-04-17 20:58:21 +00009
10extern "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