Jamfile 800 B

123456789101112131415161718192021222324252627
  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. import testing ;
  9. # Make tests run by default.
  10. DEPENDS all : test ;
  11. {
  12. # look in BOOST_ROOT for sources first, just in this Jamfile
  13. local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
  14. run compile-fail.cpp ;
  15. run run-fail.cpp ;
  16. run run-note-fail.cpp ;
  17. run run-note-pass.cpp ;
  18. run run-note-warn.cpp ;
  19. run run-pass.cpp ;
  20. run run-pass-warn.cpp ;
  21. }
粤ICP备19079148号