mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-04 09:11:43 +00:00

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@257701 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
479 B
C++
21 lines
479 B
C++
// Simple test for a fuzzer. The fuzzer must find the string "Hi!".
|
|
#include <assert.h>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <cstddef>
|
|
#include <iostream>
|
|
|
|
static volatile bool SeedLargeBuffer;
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
|
|
assert(Data);
|
|
if (Size >= 4)
|
|
SeedLargeBuffer = true;
|
|
if (Size == 3 && SeedLargeBuffer && Data[3]) {
|
|
std::cout << "Woops, reading Data[3] w/o crashing\n";
|
|
exit(1);
|
|
}
|
|
return 0;
|
|
}
|
|
|