Jamfile.v2 675 B

12345678910111213141516171819202122232425262728293031
  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. #
  10. import testing ;
  11. rule test_all
  12. {
  13. local all_rules = ;
  14. for local fileb in [ glob *.cpp ]
  15. {
  16. all_rules += [ run $(fileb)
  17. : # additional args
  18. : # test-files
  19. : # requirements
  20. ] ;
  21. }
  22. return $(all_rules) ;
  23. }
  24. test-suite move_example : [ test_all r ]
  25. : <link>static
  26. ;