Add float fuzzer and cleanup

This commit is contained in:
Victor Zverovich
2020-10-14 07:13:37 -07:00
committed by Victor Zverovich
parent 82c4e2236a
commit 010efc310f
6 changed files with 98 additions and 88 deletions

View File

@@ -81,6 +81,7 @@ void invoke_outer(const uint8_t* data, size_t size, int period) {
break;
case 15:
invoke_inner<std::exa>(format_str, rep);
break;
}
}
@@ -129,8 +130,6 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
case 12:
invoke_outer<long double>(data, size, period);
break;
default:
break;
}
return 0;
}