Jamfile.v2 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. # Boost Timer Library test Jamfile
  2. # Copyright Beman Dawes 2003, 2006, 2011
  3. # Distributed under the Boost Software License, Version 1.0.
  4. # See http://www.boost.org/LICENSE_1_0.txt
  5. # See library home page at http://www.boost.org/libs/timer
  6. import testing ;
  7. path-constant parent : .. ; # so that inspect will start in boost-root/libs/timer
  8. # when run from another directory, such as boost-root/status
  9. project
  10. : requirements
  11. <library>/boost/timer//boost_timer
  12. ;
  13. run ../example/auto_cpu_timer_example.cpp : : : <test-info>always_show_run_output ;
  14. run cpu_timer_info.cpp : : : <test-info>always_show_run_output ;
  15. run cpu_timer_test.cpp : : : <test-info>always_show_run_output ;
  16. run ../example/timex.cpp : echo "Hello, world" : : <test-info>always_show_run_output ;
  17. compile original_timer_test.cpp ;
  18. run chrono_conflict_test.cpp /boost/chrono//boost_chrono : : : <link>static ;
  19. run progress_display_test.cpp ;
  20. run /boost/tools/inspect//inspect/<variant>release : $(parent) -text -brief : : <test-info>always_show_run_output : inspect ;
  21. explicit inspect ;