Merge pull request #7340 from Icinga/bugfix/unit-tests-unstable-7334

Tests: _Exit() in main()
This commit is contained in:
Michael Friedrich 2019-07-23 14:13:28 +02:00 committed by GitHub
commit f1e820ae7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 1 deletions

View File

@ -1,5 +1,21 @@
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#define BOOST_TEST_MAIN
#define BOOST_TEST_MODULE icinga2
#define BOOST_TEST_NO_MAIN
#define BOOST_TEST_ALTERNATIVE_INIT_API
#include <BoostTestTargetConfig.h>
#include <boost/test/unit_test.hpp>
#include <cstdlib>
int BOOST_TEST_CALL_DECL
main(int argc, char **argv)
{
std::_Exit(boost::unit_test::unit_test_main(init_unit_test, argc, argv));
return EXIT_FAILURE;
}
#ifdef _WIN32
#include <boost/test/impl/unit_test_main.ipp>
#include <boost/test/impl/framework.ipp>
#endif /* _WIN32 */