Jamfile.v2 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # Boost.Bind Library test Jamfile
  2. #
  3. # Copyright (c) 2003-2006, 2017 Peter Dimov
  4. #
  5. # Distributed under the Boost Software License, Version 1.0. (See
  6. # 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. # quick test (for CI)
  11. run quick.cpp ;
  12. # full test suite
  13. run bind_test.cpp ;
  14. run bind_dm_test.cpp ;
  15. run bind_eq_test.cpp ;
  16. run bind_const_test.cpp ;
  17. run bind_cv_test.cpp ;
  18. run bind_stateful_test.cpp ;
  19. run bind_dm2_test.cpp ;
  20. run bind_not_test.cpp ;
  21. run bind_rel_test.cpp ;
  22. run bind_function_test.cpp ;
  23. run bind_lookup_problem_test.cpp ;
  24. run bind_rv_sp_test.cpp ;
  25. compile bind_unary_addr.cpp ;
  26. run bind_dm3_test.cpp ;
  27. run bind_visit_test.cpp ;
  28. run bind_placeholder_test.cpp ;
  29. run bind_rvalue_test.cpp ;
  30. run bind_and_or_test.cpp ;
  31. run bind_void_test.cpp ;
  32. run bind_void_dm_test.cpp ;
  33. run bind_void_mf_test.cpp ;
  34. run mem_fn_test.cpp ;
  35. run mem_fn_void_test.cpp ;
  36. run mem_fn_derived_test.cpp ;
  37. run mem_fn_eq_test.cpp ;
  38. run mem_fn_dm_test.cpp ;
  39. run mem_fn_rv_test.cpp ;
  40. run ref_fn_test.cpp ;
  41. run bind_fnobj2_test.cpp ;
  42. run bind_fn2_test.cpp ;
  43. run bind_mf2_test.cpp ;
  44. run bind_eq2_test.cpp ;
  45. run mem_fn_ref_test.cpp ;
  46. run bind_ref_test.cpp ;
  47. run bind_eq3_test.cpp ;
  48. run protect_test.cpp ;
  49. run mem_fn_unary_addr_test.cpp ;
  50. run bind_function2_test.cpp ;
  51. run bind_fwd_test.cpp ;
  52. run bind_fwd2_test.cpp ;
  53. run bind_no_placeholders_test.cpp ;
  54. run placeholder_const_ref_test.cpp ;
  55. run bind_function_ap_test.cpp ;
  56. run bind_type_test.cpp ;
  57. run bind_unique_ptr_test.cpp ;
  58. run bind_nested_rv_test.cpp ;
  59. compile arg_copy_test.cpp ;
  60. compile-fail arg_copy_fail.cpp ;
  61. run placeholder_std_bind_test.cpp ;
  62. run bind_fastcall_test.cpp ;
  63. run bind_stdcall_test.cpp ;
  64. run bind_cdecl_mf_test.cpp ;
  65. run bind_fastcall_mf_test.cpp ;
  66. run bind_stdcall_mf_test.cpp ;
  67. run mem_fn_cdecl_test.cpp ;
  68. run mem_fn_fastcall_test.cpp ;
  69. run mem_fn_stdcall_test.cpp ;
  70. run bind_noexcept_test.cpp ;
  71. run bind_noexcept_mf_test.cpp ;