aboutsummaryrefslogtreecommitdiffstats
path: root/fuzz/standalone_fuzz_target_runner.cc
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/standalone_fuzz_target_runner.cc')
-rw-r--r--fuzz/standalone_fuzz_target_runner.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/fuzz/standalone_fuzz_target_runner.cc b/fuzz/standalone_fuzz_target_runner.cc
index 7038f188..9881d0fb 100644
--- a/fuzz/standalone_fuzz_target_runner.cc
+++ b/fuzz/standalone_fuzz_target_runner.cc
@@ -20,8 +20,7 @@ int main(int argc, char **argv)
in.seekg(0, in.end);
size_t length = in.tellg();
in.seekg (0, in.beg);
- std::cout << "Reading " << length << " bytes from " << argv[i]
- << std::endl;
+ std::cout << "checking " << argv[i] << std::endl;
// Allocate exactly length bytes so that we reliably catch
// buffer overflows.
std::vector<char> bytes(length);
@@ -30,7 +29,7 @@ int main(int argc, char **argv)
LLVMFuzzerTestOneInput(
reinterpret_cast<unsigned char const*>(bytes.data()),
bytes.size());
- std::cout << "Execution successful" << std::endl;
+ std::cout << argv[i] << " successful" << std::endl;
}
return 0;
}