diff options
| author | Kostya Serebryany <kcc@google.com> | 2019-02-15 21:51:15 +0000 |
|---|---|---|
| committer | Kostya Serebryany <kcc@google.com> | 2019-02-15 21:51:15 +0000 |
| commit | 9982ee5472f87059cee75146293d0742f95bacc8 (patch) | |
| tree | ac683d4c69d22595ef1823427fef62321d20b28d /compiler-rt/lib/fuzzer/FuzzerIO.cpp | |
| parent | 1dcff8d17ca44abb090ed38d3ef70d25c8e3465c (diff) | |
| download | bcm5719-llvm-9982ee5472f87059cee75146293d0742f95bacc8.tar.gz bcm5719-llvm-9982ee5472f87059cee75146293d0742f95bacc8.zip | |
[libFuzzer] form mode: add -ignore_crashes flag, honor the max_total_time flag, print the number of ooms/timeouts/crashes, fix a typo
llvm-svn: 354175
Diffstat (limited to 'compiler-rt/lib/fuzzer/FuzzerIO.cpp')
| -rw-r--r-- | compiler-rt/lib/fuzzer/FuzzerIO.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/fuzzer/FuzzerIO.cpp b/compiler-rt/lib/fuzzer/FuzzerIO.cpp index 33d6568c9c0..290112aa4b1 100644 --- a/compiler-rt/lib/fuzzer/FuzzerIO.cpp +++ b/compiler-rt/lib/fuzzer/FuzzerIO.cpp @@ -136,7 +136,7 @@ void VPrintf(bool Verbose, const char *Fmt, ...) { } void RmDirRecursive(const std::string &Dir) { - IterateDirRecurisve( + IterateDirRecursive( Dir, [](const std::string &Path) {}, [](const std::string &Path) { RmDir(Path); }, [](const std::string &Path) { RemoveFile(Path); }); |

