[libFuzzer] form mode: add -ignore_crashes flag, honor the max_total_time flag, print the number of ooms/timeouts/crashes, fix a typo
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk/lib/fuzzer@354175 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/FuzzerIO.cpp b/FuzzerIO.cpp
index 33d6568..290112a 100644
--- a/FuzzerIO.cpp
+++ b/FuzzerIO.cpp
@@ -136,7 +136,7 @@
}
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); });