Jamfile 851 B

12345678910111213141516171819202122232425262728
  1. # Boost Regression Reporting test Jamfile
  2. # (C) Copyright Beman Dawes 2003. Permission to copy, use, modify, sell and
  3. # distribute this software is granted provided this copyright notice appears in
  4. # all copies. This software is provided "as is" without express or implied
  5. # warranty, and with no claim as to its suitability for any purpose.
  6. subproject tools/regression/test ;
  7. # bring in rules for testing
  8. SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
  9. include testing.jam ;
  10. # Make tests run by default.
  11. DEPENDS all : test ;
  12. {
  13. # look in BOOST_ROOT for sources first, just in this Jamfile
  14. local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
  15. run compile-fail.cpp ;
  16. run run-fail.cpp ;
  17. run run-note-fail.cpp ;
  18. run run-note-pass.cpp ;
  19. run run-note-warn.cpp ;
  20. run run-pass.cpp ;
  21. run run-pass-warn.cpp ;
  22. }
粤ICP备19079148号