Jamfile.v2 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # (C) Copyright 2004: Eric Niebler
  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. # bring in rules for testing
  5. import testing ;
  6. project : requirements <toolset>msvc:<asynch-exceptions>on ;
  7. test-suite "foreach"
  8. : [ run stl_byval.cpp ]
  9. [ run stl_byref.cpp ]
  10. [ run stl_byval_r.cpp ]
  11. [ run stl_byref_r.cpp ]
  12. [ run array_byval.cpp ]
  13. [ run array_byref.cpp ]
  14. [ run array_byval_r.cpp ]
  15. [ run array_byref_r.cpp ]
  16. [ run cstr_byval.cpp ]
  17. [ run cstr_byref.cpp ]
  18. [ run cstr_byval_r.cpp ]
  19. [ run cstr_byref_r.cpp ]
  20. [ run pair_byval.cpp ]
  21. [ run pair_byref.cpp ]
  22. [ run pair_byval_r.cpp ]
  23. [ run pair_byref_r.cpp ]
  24. [ run user_defined.cpp ]
  25. [ run call_once.cpp ]
  26. [ run rvalue_const.cpp ]
  27. [ run rvalue_nonconst.cpp ]
  28. [ run rvalue_const_r.cpp ]
  29. [ run rvalue_nonconst_r.cpp ]
  30. [ run dependent_type.cpp ]
  31. [ run misc.cpp ]
  32. [ compile noncopyable.cpp ]
  33. ;