Jamfile.v2 681 B

1234567891011121314151617181920212223242526272829
  1. ##############################################################################
  2. ##
  3. ## (C) Copyright Ion Gaztanaga 2008-2009 Distributed under the Boost
  4. ## Software License, Version 1.0. (See accompanying file
  5. ## LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. ##
  7. ##
  8. ##############################################################################
  9. import testing ;
  10. rule test_all
  11. {
  12. local all_rules = ;
  13. for local fileb in [ glob *.cpp ]
  14. {
  15. all_rules += [ run $(fileb) /boost/timer//boost_timer
  16. : # additional args
  17. : # test-files
  18. : # requirements
  19. ] ;
  20. }
  21. return $(all_rules) ;
  22. }
  23. test-suite move_test : [ test_all r ] ;