Server IP : 104.21.38.3 / Your IP : 172.70.92.222 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/boost/boost_1_59_0/boost/test/ |
Upload File : |
// (C) Copyright Gennadiy Rozental 2001-2014. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org/libs/test for the library home page. // /// @file /// @brief test tools compatibility header /// /// This file is used to select the test tools implementation and includes all the necessary headers // *************************************************************************** #ifndef BOOST_TEST_TOOLS_HPP_111812GER #define BOOST_TEST_TOOLS_HPP_111812GER #include <boost/config.hpp> #include <boost/preprocessor/config/config.hpp> #if !BOOST_PP_VARIADICS || ((__cplusplus >= 201103L) && defined(BOOST_NO_CXX11_VARIADIC_MACROS)) #define BOOST_TEST_NO_VARIADIC #endif // Boost.Test // #define BOOST_TEST_NO_OLD_TOOLS #if defined(BOOST_TEST_NO_VARIADIC) # define BOOST_TEST_NO_NEW_TOOLS #endif // #define BOOST_TEST_TOOLS_UNDER_DEBUGGER // #define BOOST_TEST_TOOLS_DEBUGGABLE #include <boost/test/tools/context.hpp> #ifndef BOOST_TEST_NO_OLD_TOOLS # include <boost/test/tools/old/interface.hpp> # include <boost/test/tools/old/impl.hpp> # include <boost/test/tools/detail/print_helper.hpp> #endif #ifndef BOOST_TEST_NO_NEW_TOOLS # include <boost/test/tools/interface.hpp> # include <boost/test/tools/assertion.hpp> # include <boost/test/tools/fpc_op.hpp> # include <boost/test/tools/collection_comparison_op.hpp> # include <boost/test/tools/cstring_comparison_op.hpp> # include <boost/test/tools/detail/fwd.hpp> # include <boost/test/tools/detail/print_helper.hpp> # include <boost/test/tools/detail/it_pair.hpp> # include <boost/test/tools/detail/bitwise_manip.hpp> # include <boost/test/tools/detail/tolerance_manip.hpp> # include <boost/test/tools/detail/per_element_manip.hpp> # include <boost/test/tools/detail/lexicographic_manip.hpp> #endif #endif // BOOST_TEST_TOOLS_HPP_111812GER