test_exec_monitor.hpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // (C) Copyright Gennadiy Rozental 2001-2008.
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/test for the library home page.
  6. //
  7. // File : $RCSfile$
  8. //
  9. // Version : $Revision: 49312 $
  10. //
  11. // Description : Entry point for the end user into the Test Execution Monitor.
  12. // ***************************************************************************
  13. #ifndef BOOST_TEST_EXEC_MONITOR_HPP_071894GER
  14. #define BOOST_TEST_EXEC_MONITOR_HPP_071894GER
  15. // Boost.Test
  16. #include <boost/test/test_tools.hpp>
  17. //____________________________________________________________________________//
  18. // ************************************************************************** //
  19. // ************** Auto Linking ************** //
  20. // ************************************************************************** //
  21. // Automatically link to the correct build variant where possible.
  22. #if !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_TEST_NO_LIB) && \
  23. !defined(BOOST_TEST_SOURCE) && !defined(BOOST_TEST_INCLUDED)
  24. # define BOOST_LIB_NAME boost_test_exec_monitor
  25. # include <boost/config/auto_link.hpp>
  26. #endif // auto-linking disabled
  27. #endif // BOOST_TEST_EXEC_MONITOR_HPP_071894GER