summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Fuzzer/test/TimeoutTest.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/TimeoutTest.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/TimeoutTest.cpp')
-rw-r--r--llvm/lib/Fuzzer/test/TimeoutTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/test/TimeoutTest.cpp b/llvm/lib/Fuzzer/test/TimeoutTest.cpp
index 23683ce866c..d541c058b64 100644
--- a/llvm/lib/Fuzzer/test/TimeoutTest.cpp
+++ b/llvm/lib/Fuzzer/test/TimeoutTest.cpp
@@ -6,7 +6,7 @@
static volatile int Sink;
-extern "C" void TestOneInput(const uint8_t *Data, size_t Size) {
+extern "C" void LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
if (Size > 0 && Data[0] == 'H') {
Sink = 1;
if (Size > 1 && Data[1] == 'i') {
OpenPOWER on IntegriCloud