mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2021 Ben Vanik. All rights reserved. *
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
******************************************************************************
|
|
*/
|
|
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include <locale>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "xenia/base/console_app_main.h"
|
|
#include "xenia/base/cvar.h"
|
|
|
|
#define CATCH_CONFIG_RUNNER
|
|
#include "third_party/catch/single_include/catch2/catch.hpp"
|
|
|
|
namespace xe {
|
|
namespace test_suite {
|
|
|
|
int test_suite_main(const std::vector<std::string>& args) {
|
|
// Catch doesn't expose a way to pass a vector of strings, despite building a
|
|
// vector internally.
|
|
int argc = 0;
|
|
std::vector<const char*> argv;
|
|
for (const auto& arg : args) {
|
|
argv.push_back(arg.c_str());
|
|
argc++;
|
|
}
|
|
|
|
// Run Catch.
|
|
return Catch::Session().run(argc, argv.data());
|
|
}
|
|
|
|
} // namespace test_suite
|
|
} // namespace xe
|
|
|
|
#ifndef XE_TEST_SUITE_NAME
|
|
#error XE_TEST_SUITE_NAME is undefined!
|
|
#endif
|
|
|
|
XE_DEFINE_CONSOLE_APP_TRANSPARENT(XE_TEST_SUITE_NAME,
|
|
xe::test_suite::test_suite_main);
|