1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
/************************************************************************
*
* Copyright (C) 2025 IRCAD France
*
* This file is part of Sight.
*
* Sight is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sight 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#define DOCTEST_CONFIG_IMPLEMENT
#include <core/log/spy_logger.hpp>
#include <core/runtime/runtime.hpp>
#include <boost/dll/runtime_symbol_info.hpp>
#include <doctest/doctest.h>
//------------------------------------------------------------------------------
static void init_runtime()
{
// This variable is set when configuring this file in the fw_test() CMake macro
static const std::string MODULE_NAME = "@TESTED_MODULE@"; // NOLINT(readability-redundant-string-init)
if(!MODULE_NAME.empty())
{
SIGHT_INFO("Automatic loading of module '" + MODULE_NAME + "'");
sight::core::runtime::init();
const auto lib_location = boost::dll::this_line_location().parent_path().parent_path() / "@TESTED_MODULE_PATH@";
sight::core::runtime::add_modules(lib_location.string());
sight::core::runtime::load_module(MODULE_NAME);
}
}
//------------------------------------------------------------------------------
static void shutdown_runtime()
{
// This variable is set when configuring this file in the fw_test() CMake macro
static const std::string MODULE_NAME = "@TESTED_MODULE@"; // NOLINT(readability-redundant-string-init)
if(!MODULE_NAME.empty())
{
sight::core::runtime::shutdown();
}
}
//------------------------------------------------------------------------------
int main(int argc, char** argv)
{
doctest::Context context;
context.applyCommandLine(argc, argv);
init_runtime();
int res = context.run(); // run
if(context.shouldExit()) // important - query flags (and --exit) rely on the user doing this
{
return res; // propagate the result of the tests
}
shutdown_runtime();
return res;
}
|