blob: fac41ea7076a49146401524e9a56a02b552c4d65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#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 */
|