Jamfile 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. ################################################################*# Jam #*#######
  2. # Copyright (C) 2010 Bryce Lelbach
  3. #
  4. # Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. ################################################################################
  7. build-project container_fwd ;
  8. project detail/test
  9. : requirements
  10. <toolset>clang:<cxxflags>-Wno-unused
  11. <toolset>clang:<cxxflags>-Wno-tautological-compare
  12. <toolset>clang:<cxxflags>-ftemplate-depth-300
  13. <toolset>gcc:<cxxflags>-ftemplate-depth-300
  14. <toolset>gcc:<define>_STLP_DEBUG
  15. <toolset>gcc:<define>_GLIBCXX_DEBUG
  16. <toolset>darwin:<cxxflags>-ftemplate-depth-300
  17. ;
  18. # import rules for testing conditional on config file variables
  19. import ../../config/checks/config : requires ;
  20. run binary_search_test.cpp ;
  21. run blank_test.cpp ;
  22. run is_sorted_test.cpp ;
  23. run numeric_traits_test.cpp ;
  24. run is_xxx_test.cpp ;
  25. # run test_utf8_codecvt.cpp : : : [ requires std_wstreambuf ] ;
  26. run test_utf8_codecvt.cpp ;
  27. run allocator_utilities_test.cpp ;
  28. run reference_content_test.cpp ;