2023-05-20 12:54:50 +02:00
|
|
|
#include "singletons/Settings.hpp"
|
|
|
|
|
2021-08-08 14:16:30 +02:00
|
|
|
#include <benchmark/benchmark.h>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QtConcurrent>
|
2023-05-26 14:54:23 +02:00
|
|
|
#include <QTemporaryDir>
|
2021-08-08 14:16:30 +02:00
|
|
|
|
2023-05-20 12:54:50 +02:00
|
|
|
using namespace chatterino;
|
|
|
|
|
2021-08-08 14:16:30 +02:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
|
|
|
::benchmark::Initialize(&argc, argv);
|
|
|
|
|
2023-05-26 14:54:23 +02:00
|
|
|
// Ensure settings are initialized before any benchmarks are run
|
|
|
|
QTemporaryDir settingsDir;
|
|
|
|
settingsDir.setAutoRemove(false); // we'll remove it manually
|
|
|
|
chatterino::Settings settings(settingsDir.path());
|
2023-05-20 12:54:50 +02:00
|
|
|
|
2023-05-26 14:54:23 +02:00
|
|
|
QtConcurrent::run([&app, &settingsDir]() mutable {
|
2021-08-08 14:16:30 +02:00
|
|
|
::benchmark::RunSpecifiedBenchmarks();
|
|
|
|
|
2023-05-26 14:54:23 +02:00
|
|
|
settingsDir.remove();
|
2021-08-08 14:16:30 +02:00
|
|
|
app.exit(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|