diff options
author | Kostya Serebryany <kcc@google.com> | 2015-09-04 00:12:11 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2015-09-04 00:12:11 +0000 |
commit | 7d211662188c6ee6aa8a073ff55773e3978c28c5 (patch) | |
tree | e7aa3fd0153b42f71a3bfd6050f0b9e7ba148d18 /llvm/lib/Fuzzer/test/SimpleDictionaryTest.cpp | |
parent | 4a7be2397684f3c9d7d897392b96e68d4c086e76 (diff) | |
download | llvm-7d211662188c6ee6aa8a073ff55773e3978c28c5.zip llvm-7d211662188c6ee6aa8a073ff55773e3978c28c5.tar.gz llvm-7d211662188c6ee6aa8a073ff55773e3978c28c5.tar.bz2 |
[libFuzzer] actually make the dictionaries work (+docs)
llvm-svn: 246825
Diffstat (limited to 'llvm/lib/Fuzzer/test/SimpleDictionaryTest.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/test/SimpleDictionaryTest.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/test/SimpleDictionaryTest.cpp b/llvm/lib/Fuzzer/test/SimpleDictionaryTest.cpp new file mode 100644 index 0000000..20c8067 --- /dev/null +++ b/llvm/lib/Fuzzer/test/SimpleDictionaryTest.cpp @@ -0,0 +1,25 @@ +// Simple test for a fuzzer. +// The fuzzer must find a string based on dictionary words: +// "Elvis" +// "Presley" +#include <cstdint> +#include <cstdlib> +#include <cstddef> +#include <cstring> +#include <iostream> + +static volatile int Zero = 0; + +extern "C" void LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { + const char *Expected = "ElvisPresley"; + if (Size < strlen(Expected)) return; + size_t Match = 0; + for (size_t i = 0; Expected[i]; i++) + if (Expected[i] + Zero == Data[i]) + Match++; + if (Match == strlen(Expected)) { + std::cout << "BINGO; Found the target, exiting\n"; + exit(1); + } +} + |