# Boost.Variant Library test Jamfile # # Copyright (C) 2003, Eric Friedman, Itay Maman. # Copyright (C) 2013, Antony Polukhin. # # Use, modification and distribution is subject to 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) # project : requirements #/boost/test//minimal msvc:on ; test-suite variant : [ run test1.cpp class_a.cpp : : : : variant_test1 ] [ run test2.cpp : : : : variant_test2 ] [ run test3.cpp : : : : variant_test3 ] [ run test3.cpp : : : off BOOST_NO_RTTI BOOST_NO_TYPEID : variant_test3_no_rtti ] [ run test4.cpp class_a.cpp : : : : variant_test4 ] [ run test5.cpp : : : : variant_test5 ] [ run test6.cpp : : : : variant_test6 ] [ run test7.cpp : : : : variant_test7 ] [ run test8.cpp : : : : variant_test8 ] [ run recursive_variant_test.cpp ] [ run variant_reference_test.cpp ] [ run variant_comparison_test.cpp ] [ run variant_visit_test.cpp ] [ run variant_get_test.cpp ] [ run variant_polymorphic_get_test.cpp ] [ run variant_multivisit_test.cpp ] [ run hash_variant_test.cpp ] [ run rvalue_test.cpp ] [ run variant_nonempty_check.cpp ] [ run recursive_variant_test.cpp : : : BOOST_NO_EXCEPTIONS gcc-4.3:-fno-exceptions gcc-4.4:-fno-exceptions gcc-4.5:-fno-exceptions gcc-4.6:-fno-exceptions gcc-4.7:-fno-exceptions gcc-4.8:-fno-exceptions clang:-fno-exceptions : variant_noexcept_test ] [ run recursive_variant_test.cpp : : : off BOOST_NO_RTTI BOOST_NO_TYPEID : variant_no_rtti_test ] [ run variant_swap_test.cpp ] [ run auto_visitors.cpp ] ;