Files
clearpilot/tools/replay/tests/test_runner.cc
Your Name 62115b2e34 wip
2024-05-12 00:33:45 -05:00

11 lines
268 B
C++
Executable File

#define CATCH_CONFIG_RUNNER
#include "catch2/catch.hpp"
#include <QCoreApplication>
int main(int argc, char **argv) {
// unit tests for Qt
QCoreApplication app(argc, argv);
const int res = Catch::Session().run(argc, argv);
return (res < 0xff ? res : 0xff);
}