Jamfile.v2 842 B

12345678910111213141516171819202122232425
  1. # Copyright David Abrahams, Jeremy Siek, Vladimir Prus
  2. # 2006. Distributed under the Boost Software License, Version
  3. # 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. # http://www.boost.org/LICENSE_1_0.txt)
  5. import testing ;
  6. test-suite concept_check
  7. : [ link stl_concept_covering.cpp ]
  8. [ run stl_concept_check.cpp ]
  9. [ run concept_check_test.cpp ]
  10. [ run class_concept_check_test.cpp ]
  11. [ compile-fail concept_check_fail_expected.cpp ]
  12. [ compile-fail class_concept_fail_expected.cpp ]
  13. [ run where.cpp ]
  14. [ compile-fail where_fail.cpp ]
  15. [ compile-fail usage_fail.cpp ]
  16. # Backward compatibility tests
  17. [ run old_concept_pass.cpp ]
  18. [ compile-fail function_requires_fail.cpp ]
  19. [ compile-fail old_concept_function_fail.cpp ]
  20. [ compile-fail old_concept_class_fail.cpp ]
  21. ;