Jamfile.v2 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Boost.Signals2 Library
  2. # Copyright Douglas Gregor 2001-2003.
  3. # Copyright Frank Mori Hess 2009.
  4. # Use, modification and
  5. # distribution is subject to the Boost Software License, Version
  6. # 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt)
  8. # For more information, see http://www.boost.org
  9. # bring in rules for testing
  10. import testing ;
  11. project
  12. : source-location .
  13. : requirements
  14. <hardcode-dll-paths>true
  15. <library>/boost/test//boost_unit_test_framework
  16. <link>static
  17. ;
  18. rule thread-run ( sources )
  19. {
  20. return
  21. [ run $(sources) : : : <library>/boost/thread//boost_thread/
  22. <threading>multi ]
  23. ;
  24. }
  25. {
  26. test-suite signals2
  27. :
  28. [ run connection_test.cpp ]
  29. [ run dead_slot_test.cpp ]
  30. [ run deadlock_regression_test.cpp ]
  31. [ run deconstruct_test.cpp ]
  32. [ run deletion_test.cpp ]
  33. [ thread-run mutex_test.cpp ]
  34. [ run ordering_test.cpp ]
  35. [ run regression_test.cpp ]
  36. [ run shared_connection_block_test.cpp ]
  37. [ run signal_n_test.cpp ]
  38. [ run signal_test.cpp ]
  39. [ run signal_type_test.cpp ]
  40. [ run slot_compile_test.cpp ]
  41. [ thread-run threading_models_test.cpp ]
  42. [ run trackable_test.cpp ]
  43. [ run track_test.cpp ]
  44. ;
  45. }