summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Phillips <mitchphillips@outlook.com>2019-09-26 00:54:30 +0000
committerMitch Phillips <mitchphillips@outlook.com>2019-09-26 00:54:30 +0000
commit8bc91a47c8c1c42eb99c5d6030a0d8c785548f0a (patch)
tree27093c4f24affe244212172db029674ff686f45b
parente01a28f8cd0672b26a2cf80ad7ebafe953063293 (diff)
downloadcompiler-rt-8bc91a47c8c1c42eb99c5d6030a0d8c785548f0a.tar.gz
[libFuzzer] [NFC] Fix grammar error with "it's"
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@372937 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/fuzzer/FuzzerLoop.cpp2
-rw-r--r--test/fuzzer/overwrite-input.test2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/fuzzer/FuzzerLoop.cpp b/lib/fuzzer/FuzzerLoop.cpp
index 9c2667393..7150a116b 100644
--- a/lib/fuzzer/FuzzerLoop.cpp
+++ b/lib/fuzzer/FuzzerLoop.cpp
@@ -513,7 +513,7 @@ size_t Fuzzer::GetCurrentUnitInFuzzingThead(const uint8_t **Data) const {
}
void Fuzzer::CrashOnOverwrittenData() {
- Printf("==%d== ERROR: libFuzzer: fuzz target overwrites it's const input\n",
+ Printf("==%d== ERROR: libFuzzer: fuzz target overwrites its const input\n",
GetPid());
DumpCurrentUnit("crash-");
Printf("SUMMARY: libFuzzer: out-of-memory\n");
diff --git a/test/fuzzer/overwrite-input.test b/test/fuzzer/overwrite-input.test
index e5ddd62cb..eef1b181a 100644
--- a/test/fuzzer/overwrite-input.test
+++ b/test/fuzzer/overwrite-input.test
@@ -1,3 +1,3 @@
RUN: %cpp_compiler %S/OverwriteInputTest.cpp -o %t-OverwriteInputTest
RUN: not %run %t-OverwriteInputTest 2>&1 | FileCheck %s
-CHECK: ERROR: libFuzzer: fuzz target overwrites it's const input
+CHECK: ERROR: libFuzzer: fuzz target overwrites its const input