mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
32 lines
687 B
C++
32 lines
687 B
C++
/*
|
|
* Copyright 2010-2022 Branimir Karadzic. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bx/blob/master/LICENSE
|
|
*/
|
|
|
|
#define CATCH_CONFIG_RUNNER
|
|
#include "test.h"
|
|
|
|
int runAllTests(int _argc, const char* _argv[])
|
|
{
|
|
DBG("Compiler: " BX_COMPILER_NAME
|
|
", CPU: " BX_CPU_NAME
|
|
", Architecture: " BX_ARCH_NAME
|
|
", OS: " BX_PLATFORM_NAME
|
|
", CRT: " BX_CRT_NAME
|
|
", Date: " __DATE__
|
|
", Time: " __TIME__
|
|
", C++: " BX_CPP_NAME
|
|
);
|
|
|
|
using namespace Catch;
|
|
|
|
Session session;
|
|
|
|
ConfigData config;
|
|
config.defaultColourMode = BX_PLATFORM_EMSCRIPTEN ? ColourMode::None : ColourMode::PlatformDefault;
|
|
|
|
session.useConfigData(config);
|
|
|
|
return session.run(_argc, _argv);
|
|
}
|