diff --git a/test/Jamfile b/test/Jamfile index 87f9ef9..7295305 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -4,648 +4,146 @@ subproject libs/type_traits/test ; # bring in the rules for testing SEARCH on testing.jam = $(BOOST_BUILD_PATH) ; include testing.jam ; - + +rule type-traits-run ( sources + ) { + return [ + run + # sources + $(sources) -local TYPE_TRAIT_PATH = "" ; -local TEST_LIB_PATH = "../../test/build/" ; + # dependencies + type_traits_init + ../../test/build/boost_unit_test_framework + : # additional args + --report_level=detailed --build_info=yes --log_level=messages + : # test-files + : # requirements + $(BOOST_ROOT) + : # test name + ] ; +} - - -test-suite type_traits : - - [ lib type_traits_init : $(TYPE_TRAIT_PATH)init.cpp +lib type_traits_init : init.cpp : $(BOOST_ROOT) : - ] - - - [ run $(TYPE_TRAIT_PATH)add_const_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)add_pointer_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)add_reference_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)add_volatile_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)alignment_of_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)function_traits_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)has_nothrow_assign_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)has_nothrow_constructor_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)has_nothrow_copy_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)has_trivial_assign_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)has_trivial_constructor_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)has_trivial_copy_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)has_trivial_destructor_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_arithmetic_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_array_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_base_and_derived_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_class_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_compound_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_const_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_convertible_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_empty_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_enum_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_float_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_function_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_fundamental_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_integral_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_member_function_pointer_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_member_pointer_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_object_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_pod_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_pointer_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_polymorphic_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_reference_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_same_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_scalar_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_stateless_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_union_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_void_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)is_volatile_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)remove_bounds_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)remove_const_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)remove_cv_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)remove_pointer_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)remove_reference_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)remove_volatile_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)tricky_abstract_type_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)tricky_add_pointer_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)tricky_function_type_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)tricky_incomplete_type_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)tricky_partial_specialization_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)type_with_alignment_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - ] - - - [ run $(TYPE_TRAIT_PATH)type_with_alignment_test.cpp $(TYPE_TRAIT_PATH)tricky_partial_specialization_test.cpp $(TYPE_TRAIT_PATH)tricky_incomplete_type_test.cpp $(TYPE_TRAIT_PATH)tricky_function_type_test.cpp $(TYPE_TRAIT_PATH)tricky_add_pointer_test.cpp $(TYPE_TRAIT_PATH)tricky_abstract_type_test.cpp $(TYPE_TRAIT_PATH)remove_volatile_test.cpp $(TYPE_TRAIT_PATH)remove_reference_test.cpp $(TYPE_TRAIT_PATH)remove_pointer_test.cpp $(TYPE_TRAIT_PATH)remove_cv_test.cpp $(TYPE_TRAIT_PATH)remove_const_test.cpp $(TYPE_TRAIT_PATH)remove_bounds_test.cpp $(TYPE_TRAIT_PATH)is_volatile_test.cpp $(TYPE_TRAIT_PATH)is_void_test.cpp $(TYPE_TRAIT_PATH)is_union_test.cpp $(TYPE_TRAIT_PATH)is_stateless_test.cpp $(TYPE_TRAIT_PATH)is_scalar_test.cpp $(TYPE_TRAIT_PATH)is_same_test.cpp $(TYPE_TRAIT_PATH)is_reference_test.cpp $(TYPE_TRAIT_PATH)is_polymorphic_test.cpp $(TYPE_TRAIT_PATH)is_pointer_test.cpp $(TYPE_TRAIT_PATH)is_pod_test.cpp $(TYPE_TRAIT_PATH)is_object_test.cpp $(TYPE_TRAIT_PATH)is_member_pointer_test.cpp $(TYPE_TRAIT_PATH)is_member_function_pointer_test.cpp $(TYPE_TRAIT_PATH)is_integral_test.cpp $(TYPE_TRAIT_PATH)is_fundamental_test.cpp $(TYPE_TRAIT_PATH)is_function_test.cpp $(TYPE_TRAIT_PATH)is_float_test.cpp $(TYPE_TRAIT_PATH)is_enum_test.cpp $(TYPE_TRAIT_PATH)is_empty_test.cpp $(TYPE_TRAIT_PATH)is_convertible_test.cpp $(TYPE_TRAIT_PATH)is_const_test.cpp $(TYPE_TRAIT_PATH)is_compound_test.cpp $(TYPE_TRAIT_PATH)is_class_test.cpp $(TYPE_TRAIT_PATH)is_base_and_derived_test.cpp $(TYPE_TRAIT_PATH)is_array_test.cpp $(TYPE_TRAIT_PATH)is_arithmetic_test.cpp $(TYPE_TRAIT_PATH)has_trivial_destructor_test.cpp $(TYPE_TRAIT_PATH)has_trivial_copy_test.cpp $(TYPE_TRAIT_PATH)has_trivial_constructor_test.cpp $(TYPE_TRAIT_PATH)has_trivial_assign_test.cpp $(TYPE_TRAIT_PATH)has_nothrow_copy_test.cpp $(TYPE_TRAIT_PATH)has_nothrow_constructor_test.cpp $(TYPE_TRAIT_PATH)has_nothrow_assign_test.cpp $(TYPE_TRAIT_PATH)function_traits_test.cpp $(TYPE_TRAIT_PATH)alignment_of_test.cpp $(TYPE_TRAIT_PATH)add_volatile_test.cpp $(TYPE_TRAIT_PATH)add_reference_test.cpp $(TYPE_TRAIT_PATH)add_pointer_test.cpp $(TYPE_TRAIT_PATH)add_const_test.cpp - $(TYPE_TRAIT_PATH)type_traits_init - $(TEST_LIB_PATH)unit_test_framework - : - --report_level=detailed --build_info=yes --log_level=messages - : - : - $(BOOST_ROOT) - : - type_traits_tests - ] - ; + + +test-suite type_traits : + +[ type-traits-run add_const_test.cpp ] +[ type-traits-run add_pointer_test.cpp ] +[ type-traits-run add_reference_test.cpp ] +[ type-traits-run add_volatile_test.cpp ] +[ type-traits-run alignment_of_test.cpp ] +[ type-traits-run function_traits_test.cpp ] +[ type-traits-run has_nothrow_assign_test.cpp ] +[ type-traits-run has_nothrow_constructor_test.cpp ] +[ type-traits-run has_nothrow_copy_test.cpp ] +[ type-traits-run has_trivial_assign_test.cpp ] +[ type-traits-run has_trivial_constructor_test.cpp ] +[ type-traits-run has_trivial_copy_test.cpp ] +[ type-traits-run has_trivial_destructor_test.cpp ] +[ type-traits-run is_arithmetic_test.cpp ] +[ type-traits-run is_array_test.cpp ] +[ type-traits-run is_base_and_derived_test.cpp ] +[ type-traits-run is_class_test.cpp ] +[ type-traits-run is_compound_test.cpp ] +[ type-traits-run is_const_test.cpp ] +[ type-traits-run is_convertible_test.cpp ] +[ type-traits-run is_empty_test.cpp ] +[ type-traits-run is_enum_test.cpp ] +[ type-traits-run is_float_test.cpp ] +[ type-traits-run is_function_test.cpp ] +[ type-traits-run is_fundamental_test.cpp ] +[ type-traits-run is_integral_test.cpp ] +[ type-traits-run is_member_function_pointer_test.cpp ] +[ type-traits-run is_member_pointer_test.cpp ] +[ type-traits-run is_object_test.cpp ] +[ type-traits-run is_pod_test.cpp ] +[ type-traits-run is_pointer_test.cpp ] +[ type-traits-run is_polymorphic_test.cpp ] +[ type-traits-run is_reference_test.cpp ] +[ type-traits-run is_same_test.cpp ] +[ type-traits-run is_scalar_test.cpp ] +[ type-traits-run is_stateless_test.cpp ] +[ type-traits-run is_union_test.cpp ] +[ type-traits-run is_void_test.cpp ] +[ type-traits-run is_volatile_test.cpp ] +[ type-traits-run remove_bounds_test.cpp ] +[ type-traits-run remove_const_test.cpp ] +[ type-traits-run remove_cv_test.cpp ] +[ type-traits-run remove_pointer_test.cpp ] +[ type-traits-run remove_reference_test.cpp ] +[ type-traits-run remove_volatile_test.cpp ] +[ type-traits-run tricky_abstract_type_test.cpp ] +[ type-traits-run tricky_add_pointer_test.cpp ] +[ type-traits-run tricky_function_type_test.cpp ] +[ type-traits-run tricky_incomplete_type_test.cpp ] +[ type-traits-run tricky_partial_specialization_test.cpp ] +[ type-traits-run type_with_alignment_test.cpp ] +[ run + +add_const_test.cpp +add_pointer_test.cpp +add_reference_test.cpp +add_volatile_test.cpp +alignment_of_test.cpp +function_traits_test.cpp +has_nothrow_assign_test.cpp +has_nothrow_constructor_test.cpp +has_nothrow_copy_test.cpp +has_trivial_assign_test.cpp +has_trivial_constructor_test.cpp +has_trivial_copy_test.cpp +has_trivial_destructor_test.cpp +is_arithmetic_test.cpp +is_array_test.cpp +is_base_and_derived_test.cpp +is_class_test.cpp +is_compound_test.cpp +is_const_test.cpp +is_convertible_test.cpp +is_empty_test.cpp +is_enum_test.cpp +is_float_test.cpp +is_function_test.cpp +is_fundamental_test.cpp +is_integral_test.cpp +is_member_function_pointer_test.cpp +is_member_pointer_test.cpp +is_object_test.cpp +is_pod_test.cpp +is_pointer_test.cpp +is_polymorphic_test.cpp +is_reference_test.cpp +is_same_test.cpp +is_scalar_test.cpp +is_stateless_test.cpp +is_union_test.cpp +is_void_test.cpp +is_volatile_test.cpp +remove_bounds_test.cpp +remove_const_test.cpp +remove_cv_test.cpp +remove_pointer_test.cpp +remove_reference_test.cpp +remove_volatile_test.cpp +tricky_abstract_type_test.cpp +tricky_add_pointer_test.cpp +tricky_function_type_test.cpp +tricky_incomplete_type_test.cpp +tricky_partial_specialization_test.cpp +type_with_alignment_test.cpp +type_traits_init + : + : + : + : +type_traits_all ] + +; # type traits suite -}