Jamfile.v2 765 B

1234567891011121314151617181920212223242526272829
  1. # Boost.Assert Library test Jamfile
  2. #
  3. # Copyright (c) 2014, 2017 Peter Dimov
  4. #
  5. # Distributed under the Boost Software License, Version 1.0.
  6. # See accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt
  8. # bring in rules for testing
  9. import testing ;
  10. run assert_test.cpp ;
  11. run current_function_test.cpp
  12. : : : <test-info>always_show_run_output ;
  13. run verify_test.cpp ;
  14. run assert_is_void_test.cpp ;
  15. # expansion tests are in exp/ so that there is a backslash in the path on Windows
  16. run exp/assert_exp_test.cpp ;
  17. run exp/assert_msg_exp_test.cpp ;
  18. run exp/verify_exp_test.cpp ;
  19. run exp/verify_msg_exp_test.cpp ;
  20. run assert_test2.cpp ;
  21. run assert_msg_test2.cpp ;
  22. # quick test (for CI)
  23. run quick.cpp ;
  24. run current_function_test2.cpp ;