Jamfile.v2 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Copyright David Abrahams 2003.
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # See http://www.boost.org/LICENSE_1_0.txt
  4. # For more information, see http://www.boost.org/
  5. # bring in rules for testing
  6. import testing ;
  7. run base_from_member_test.cpp ;
  8. run base_from_member_ref_test.cpp ;
  9. run binary_test.cpp ;
  10. run call_traits_test.cpp : -u ;
  11. run compressed_pair_test.cpp ;
  12. run compressed_pair_final_test.cpp ;
  13. run iterators_test.cpp ;
  14. run operators_test.cpp ;
  15. compile result_of_test.cpp ;
  16. # compile-fail string_ref_from_rvalue.cpp ;
  17. run string_ref_test1.cpp ;
  18. run string_ref_test2.cpp ;
  19. run string_ref_test_io.cpp ;
  20. # compile-fail string_view_from_rvalue.cpp ;
  21. compile string_view_constexpr_test1.cpp ;
  22. run string_view_test1.cpp ;
  23. run string_view_test2.cpp ;
  24. run string_view_test_io.cpp ;
  25. run value_init_test.cpp ;
  26. run value_init_workaround_test.cpp ;
  27. run initialized_test.cpp ;
  28. compile-fail value_init_test_fail1.cpp ;
  29. compile-fail value_init_test_fail2.cpp ;
  30. compile-fail value_init_test_fail3.cpp ;
  31. compile-fail initialized_test_fail1.cpp ;
  32. compile-fail initialized_test_fail2.cpp ;
  33. run ostream_string_test.cpp ;