Default visibility for enums and rtti objects facility
Making the RTTI objects globally visible. Some old versions of clang are apparently not honoring the enum visibility.
This commit is contained in:
parent
aa2ffbf1bf
commit
a84a5564f5
@ -232,6 +232,7 @@ set(LIST_EXAMPLES
|
||||
unit_test_example_12.cpp,static,link
|
||||
unit_test_example_13.cpp,shared,run
|
||||
unit_test_example_15.cpp,shared,fail
|
||||
unit_test_example_16.cpp,shared,run
|
||||
|
||||
const_string_test.cpp,none,run
|
||||
named_param_example.cpp,none,run
|
||||
|
@ -21,9 +21,6 @@ if [ os.environ UBSAN ]
|
||||
|
||||
ECHO $(HAS_UBSAN:J) ;
|
||||
|
||||
# requirements
|
||||
import ../../config/checks/config : requires ;
|
||||
|
||||
# Project
|
||||
project boost/test-examples
|
||||
:
|
||||
@ -70,6 +67,7 @@ alias boost_test_examples
|
||||
[ link unit_test_example_12.cpp unit_test_framework/<link>static ]
|
||||
[ run unit_test_example_13.cpp ]
|
||||
[ run-fail unit_test_example_15.cpp : : : [ requires cxx11_decltype cxx11_hdr_random cxx11_hdr_tuple cxx11_hdr_initializer_list cxx11_variadic_macros cxx11_trailing_result_types cxx11_template_aliases ] ]
|
||||
[ run unit_test_example_16.cpp unit_test_framework ]
|
||||
|
||||
[ run named_param_example.cpp ]
|
||||
|
||||
|
35
example/unit_test_example_16.cpp
Normal file
35
example/unit_test_example_16.cpp
Normal file
@ -0,0 +1,35 @@
|
||||
// (C) Copyright Raffi Enficiaud 2019.
|
||||
// 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.
|
||||
//
|
||||
// ***************************************************************************
|
||||
|
||||
// Boost.Test
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/test/unit_test_parameters.hpp>
|
||||
|
||||
bool init_unit_test()
|
||||
{
|
||||
using namespace boost::unit_test;
|
||||
|
||||
// Having some problems on AppleClang 10.10 / Xcode 6/7
|
||||
#if !defined(BOOST_TEST_DYN_LINK) || (!defined(BOOST_CLANG) || (BOOST_CLANG != 1) || (__clang_major__ >= 8))
|
||||
log_level logLevel = runtime_config::get<log_level>(runtime_config::btrt_log_level);
|
||||
std::cout << "Current log level: " << static_cast<int>(logLevel) << std::endl;
|
||||
#endif
|
||||
return true;
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE( my_test1 )
|
||||
{
|
||||
BOOST_CHECK( true );
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
int retCode = boost::unit_test::unit_test_main( &init_unit_test, argc, argv );
|
||||
return retCode;
|
||||
}
|
@ -12,6 +12,8 @@
|
||||
#ifndef BOOST_TEST_LOG_LEVEL_HPP_011605GER
|
||||
#define BOOST_TEST_LOG_LEVEL_HPP_011605GER
|
||||
|
||||
#include <boost/test/detail/config.hpp>
|
||||
|
||||
namespace boost {
|
||||
namespace unit_test {
|
||||
|
||||
@ -20,7 +22,7 @@ namespace unit_test {
|
||||
// ************************************************************************** //
|
||||
|
||||
// each log level includes all subsequent higher loging levels
|
||||
enum log_level {
|
||||
enum BOOST_SYMBOL_VISIBLE log_level {
|
||||
invalid_log_level = -1,
|
||||
log_successful_tests = 0,
|
||||
log_test_units = 1,
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
// C Runtime
|
||||
#include <cstddef>
|
||||
#include <boost/test/detail/config.hpp>
|
||||
|
||||
namespace boost {
|
||||
namespace rtti {
|
||||
@ -30,7 +31,7 @@ typedef std::ptrdiff_t id_t;
|
||||
namespace rtti_detail {
|
||||
|
||||
template<typename T>
|
||||
struct rttid_holder {
|
||||
struct BOOST_TEST_DECL rttid_holder {
|
||||
static id_t id() { return reinterpret_cast<id_t>( &inst() ); }
|
||||
|
||||
private:
|
||||
@ -44,7 +45,7 @@ private:
|
||||
//____________________________________________________________________________//
|
||||
|
||||
template<typename T>
|
||||
inline id_t
|
||||
BOOST_TEST_DECL inline id_t
|
||||
type_id()
|
||||
{
|
||||
return rtti_detail::rttid_holder<T>::id();
|
||||
|
Loading…
Reference in New Issue
Block a user