/Src/Dependencies/Boost/libs/parameter/test/Jamfile.v2

http://hadesmem.googlecode.com/ · text · 36 lines · 31 code · 5 blank · 0 comment · 0 complexity · 7435fda5de3c004614ca331d49a3de22 MD5 · raw file

  1. # Copyright David Abrahams, Daniel Wallin 2006. Distributed under the
  2. # Boost Software License, Version 1.0. (See accompanying file
  3. # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. # Boost Parameter Library test Jamfile
  5. import python ;
  6. project boost/parameter
  7. : default-build <warnings>off
  8. ;
  9. test-suite "parameter"
  10. : [ run basics.cpp ]
  11. [ run sfinae.cpp ]
  12. [ run macros.cpp ]
  13. [ run earwicker.cpp ]
  14. [ run tutorial.cpp ]
  15. [ run singular.cpp ]
  16. [ run mpl.cpp ]
  17. [ run preprocessor.cpp ]
  18. [ run preprocessor_deduced.cpp ]
  19. [ run efficiency.cpp : : : : : <variant>release ]
  20. [ run maybe.cpp ]
  21. [ run deduced.cpp ]
  22. [ run optional_deduced_sfinae.cpp ]
  23. [ run deduced_dependent_predicate.cpp ]
  24. [ run normalized_argument_types.cpp ]
  25. [ compile ntp.cpp ]
  26. [ compile unwrap_cv_reference.cpp ]
  27. [ compile-fail duplicates.cpp ]
  28. [ compile-fail deduced_unmatched_arg.cpp ]
  29. [ compile compose.cpp ]
  30. [ bpl-test python_test ]
  31. ;