| 60 | } |
| 61 | |
| 62 | void FuzzGenReporter::addNoInputAPI(std::string APIName) { |
| 63 | auto *APIReport = getAPIReport(APIName); |
| 64 | assert(APIReport && "Unexpected Program State"); |
| 65 | APIReport->APIStatus = std::make_pair("", NOT_FUZZABLE_NO_INPUT); |
| 66 | } |
| 67 | |
| 68 | void FuzzGenReporter::addUT(std::string UTName, std::string UTFileName, |
| 69 | std::string UTDir, FuzzStatus Status) { |