cppcheck/oss-fuzz/main.cpp

57 lines
1.3 KiB
C++
Raw Normal View History

2019-03-29 21:07:01 +01:00
2021-07-08 21:21:35 +02:00
#include "color.h"
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()
2020-05-20 17:05:10 +02:00
, cppcheck(*this, false, nullptr) {
2019-03-29 21:07:01 +01:00
cppcheck.settings().addEnabled("all");
cppcheck.settings().certainty.setEnabled(Certainty::inconclusive, true);
2019-03-29 21:07:01 +01:00
}
void run(const std::string &code) {
cppcheck.check("test.cpp", code);
}
2021-07-08 21:21:35 +02:00
void reportOut(const std::string &outmsg, Color) OVERRIDE {
2020-04-04 10:31:38 +02:00
(void)outmsg;
}
2020-05-23 07:16:49 +02:00
void reportErr(const ErrorMessage &msg) OVERRIDE {
2020-04-04 10:31:38 +02:00
(void)msg;
}
2019-03-29 21:07:01 +01:00
void reportProgress(const std::string& filename,
const char stage[],
const std::size_t value) OVERRIDE {
2020-04-04 10:31:38 +02:00
(void)filename;
(void)stage;
(void)value;
}
2020-04-04 10:31:38 +02:00
void bughuntingReport(const std::string &str) OVERRIDE {
(void)str;
}
2019-03-29 21:07:01 +01:00
};
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t dataSize)
{
if (dataSize < 10000) {
const std::string code = generateCode2(data, dataSize);
//std::ofstream fout("code.cpp");
//fout << code;
//fout.close();
CppcheckExecutor cppcheckExecutor;
cppcheckExecutor.run(code);
}
2019-03-29 21:07:01 +01:00
return 0;
}