cppcheck/oss-fuzz/main.cpp

38 lines
863 B
C++
Raw Normal View History

2019-03-29 21:07:01 +01:00
#include "cppcheck.h"
2019-03-29 22:58:56 +01:00
#include "type2.h"
2019-03-29 21:07:01 +01:00
class CppcheckExecutor : public ErrorLogger {
private:
CppCheck cppcheck;
public:
CppcheckExecutor()
: ErrorLogger()
, cppcheck(*this, false) {
cppcheck.settings().addEnabled("all");
cppcheck.settings().inconclusive = true;
}
void run(const std::string &code) {
cppcheck.check("test.cpp", code);
}
void reportOut(const std::string &outmsg) { }
void reportErr(const ErrorLogger::ErrorMessage &msg) {}
void reportProgress(const std::string& filename,
const char stage[],
const unsigned int value) {}
};
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t dataSize) {
CppcheckExecutor cppcheckExecutor;
2019-03-29 22:58:56 +01:00
cppcheckExecutor.run(generateCode2(data, dataSize));
2019-03-29 21:07:01 +01:00
return 0;
}