Jamfile.v2 782 B

12345678910111213141516171819202122
  1. # Copyright Vladimur Prus 2005. Use, modification and
  2. # distribution is subject to the Boost Software License, Version
  3. # 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. # http://www.boost.org/LICENSE_1_0.txt)
  5. #
  6. # For more information, see http://www.boost.org/libs/any
  7. #
  8. import testing ;
  9. test-suite any :
  10. [ run any_test.cpp ]
  11. [ run any_test.cpp : : : <rtti>off <define>BOOST_NO_RTTI <define>BOOST_NO_TYPEID : any_test_no_rtti ]
  12. [ run any_test_rv.cpp ]
  13. [ run any_test_rv.cpp : : : <rtti>off <define>BOOST_NO_RTTI <define>BOOST_NO_TYPEID : any_test_rv_no_rtti ]
  14. [ run any_test_mplif.cpp ]
  15. [ compile-fail any_cast_cv_failed.cpp ]
  16. [ compile-fail any_test_temporary_to_ref_failed.cpp ]
  17. [ compile-fail any_test_cv_to_rv_failed.cpp ]
  18. ;