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