mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 14:46:53 +00:00
a416b73b12
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@257736 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
402 B
C++
20 lines
402 B
C++
|
|
#include <cstring>
|
|
#include <cstdint>
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
|
|
int Matches = 0;
|
|
for (size_t i = 0; i + 2 < Size; i += 3) {
|
|
const char *Pat = i % 2 ? "foo" : "bar";
|
|
if (!memcmp(Data + i, Pat, 3))
|
|
Matches++;
|
|
}
|
|
if (Matches > 20) {
|
|
fprintf(stderr, "BINGO!\n");
|
|
exit(1);
|
|
}
|
|
return 0;
|
|
}
|