1 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
2 // See https://llvm.org/LICENSE.txt for license information.
3 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5 // Simple test for a fuzzer. The fuzzer must find several narrow ranges.
11 extern int AllLines
[];
13 bool PrintOnce(int Line
) {
15 fprintf(stderr
, "Seen line %d\n", Line
);
20 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data
, size_t Size
) {
27 memcpy(&x
, Data
, 8); // 8
28 memcpy(&y
, Data
+ 8, 8); // 16
29 memcpy(&z
, Data
+ 16, sizeof(z
)); // 20
30 memcpy(&a
, Data
+ 20, sizeof(a
)); // 21
31 const bool k32bit
= sizeof(void*) == 4;
33 if ((k32bit
|| x
> 1234567890) && PrintOnce(__LINE__
) &&
34 (k32bit
|| x
< 1234567895) && PrintOnce(__LINE__
) &&
35 a
== 0x42 && PrintOnce(__LINE__
) &&
36 (k32bit
|| y
>= 987654321) && PrintOnce(__LINE__
) &&
37 (k32bit
|| y
<= 987654325) && PrintOnce(__LINE__
) &&
38 z
< -10000 && PrintOnce(__LINE__
) &&
39 z
>= -10005 && PrintOnce(__LINE__
) &&
40 z
!= -10003 && PrintOnce(__LINE__
) &&
42 fprintf(stderr
, "BINGO; Found the target: size %zd (%zd, %zd, %d, %d), exiting.\n",
49 int AllLines
[__LINE__
+ 1]; // Must be the last line.