Jamfile.v2 1.0 KB

12345678910111213141516171819202122232425
  1. #~ Copyright Rene Rivera 2008
  2. #~ Distributed under the Boost Software License, Version 1.0.
  3. #~ (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. import testing ;
  5. import ../../config/checks/config : requires ;
  6. test-suite rational
  7. : [ run rational_example.cpp ]
  8. [ run rational_test.cpp
  9. /boost/test//boost_unit_test_framework/<link>static ]
  10. [ run constexpr_test.cpp : : : [ requires cxx11_constexpr ] ]
  11. [ compile-fail expected_fail_01.cpp ]
  12. [ compile-fail expected_fail_02.cpp ]
  13. [ compile-fail expected_fail_03.cpp ]
  14. [ compile-fail expected_fail_04.cpp ]
  15. [ compile-fail expected_fail_05.cpp ]
  16. [ compile-fail expected_fail_06.cpp ]
  17. [ compile-fail expected_fail_07.cpp ]
  18. [ compile-fail expected_fail_08.cpp ]
  19. [ compile-fail expected_fail_09.cpp ]
  20. [ compile-fail expected_fail_10.cpp ]
  21. [ compile-fail expected_fail_11.cpp ]
  22. [ compile expected_compile_12.cpp ]
  23. ;