summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Fuzzer/test/CounterTest.cpp
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2015-05-06 22:19:00 +0000
committerKostya Serebryany <kcc@google.com>2015-05-06 22:19:00 +0000
commit566bc5aa8a107712e7a6d85da200df8d69ea61a0 (patch)
tree112ca432eebca7323ec7ea08513d18e9bd4772f6 /llvm/lib/Fuzzer/test/CounterTest.cpp
parentd6616acb2cde9a2704ac8f15bc79ad800237cd8f (diff)
downloadbcm5719-llvm-566bc5aa8a107712e7a6d85da200df8d69ea61a0.tar.gz
bcm5719-llvm-566bc5aa8a107712e7a6d85da200df8d69ea61a0.zip
[lib/Fuzzer] rename TestOneInput to LLVMFuzzerTestOneInput to make it more unique
llvm-svn: 236652
Diffstat (limited to 'llvm/lib/Fuzzer/test/CounterTest.cpp')
-rw-r--r--llvm/lib/Fuzzer/test/CounterTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/test/CounterTest.cpp b/llvm/lib/Fuzzer/test/CounterTest.cpp
index 332ccfe7b02..29ddb02ebae 100644
--- a/llvm/lib/Fuzzer/test/CounterTest.cpp
+++ b/llvm/lib/Fuzzer/test/CounterTest.cpp
@@ -2,7 +2,7 @@
// executed many times.
#include <iostream>
-extern "C" void TestOneInput(const uint8_t *Data, size_t Size) {
+extern "C" void LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
int Num = 0;
for (size_t i = 0; i < Size; i++)
if (Data[i] == 'A' + i)
OpenPOWER on IntegriCloud