2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2016-09-07 08:20:51 +02:00
|
|
|
|
2019-07-19 16:07:29 +02:00
|
|
|
#define BOOST_TEST_MODULE icinga2
|
|
|
|
#define BOOST_TEST_NO_MAIN
|
|
|
|
#define BOOST_TEST_ALTERNATIVE_INIT_API
|
2018-02-07 13:11:10 +01:00
|
|
|
|
2016-09-07 08:20:51 +02:00
|
|
|
#include <BoostTestTargetConfig.h>
|
2019-07-19 16:07:29 +02:00
|
|
|
#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 */
|