cppcheck/gui/test/benchmark/simple/benchmarksimple.cpp

82 lines
2.1 KiB
C++
Raw Normal View History

2011-06-20 19:04:14 +02:00
/*
* Cppcheck - A tool for static C/C++ code analysis
2022-01-28 18:30:12 +01:00
* Copyright (C) 2007-2021 Cppcheck team.
2011-06-20 19:04:14 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "benchmarksimple.h"
2022-02-02 16:17:28 +01:00
2011-06-20 19:04:14 +02:00
#include "settings.h"
2022-02-02 16:17:28 +01:00
#include "tokenize.h"
#include <sstream>
#include <QByteArray>
#include <QFile>
#include <QString>
#include <QtTest>
2011-06-20 19:04:14 +02:00
void BenchmarkSimple::tokenize()
{
QFile file(QString(SRCDIR) + "/../../data/benchmark/simple.cpp");
QByteArray data = file.readAll();
Settings settings;
settings.debugwarnings = true;
// tokenize..
Tokenizer tokenizer(&settings, this);
std::istringstream istr(data.constData());
2011-10-13 20:53:06 +02:00
QBENCHMARK {
2011-06-20 19:04:14 +02:00
tokenizer.tokenize(istr, "test.cpp");
}
}
void BenchmarkSimple::simplify()
{
QFile file(QString(SRCDIR) + "/../../data/benchmark/simple.cpp");
QByteArray data = file.readAll();
Settings settings;
settings.debugwarnings = true;
// tokenize..
Tokenizer tokenizer(&settings, this);
std::istringstream istr(data.constData());
tokenizer.tokenize(istr, "test.cpp");
2011-10-13 20:53:06 +02:00
QBENCHMARK {
tokenizer.simplifyTokenList2();
2011-06-20 19:04:14 +02:00
}
}
void BenchmarkSimple::tokenizeAndSimplify()
{
QFile file(QString(SRCDIR) + "/../../data/benchmark/simple.cpp");
QByteArray data = file.readAll();
Settings settings;
settings.debugwarnings = true;
// tokenize..
Tokenizer tokenizer(&settings, this);
std::istringstream istr(data.constData());
2011-10-13 20:53:06 +02:00
QBENCHMARK {
tokenizer.tokenize(istr, "test.cpp");
tokenizer.simplifyTokenList2();
}
}
2011-06-20 19:04:14 +02:00
QTEST_MAIN(BenchmarkSimple)