]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/timer/test/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / timer / test / Jamfile.v2
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
10 path-constant parent : .. ; # so that inspect will start in boost-root/libs/timer
11 # when run from another directory, such as boost-root/status
12
13 project
14 : requirements
15 <library>/boost/timer//boost_timer
16 <toolset>msvc:<asynch-exceptions>on
17 ;
18
19 test-suite "timer"
20 :
21 [ run ../example/auto_cpu_timer_example.cpp
22 : # command line
23 : # input files
24 : <test-info>always_show_run_output # requirements
25 ]
26 [ run cpu_timer_info.cpp
27 : # command line
28 : # input files
29 : <test-info>always_show_run_output # requirements
30 ]
31 [ run cpu_timer_test.cpp
32 : # command line
33 : # input files
34 : <test-info>always_show_run_output # requirements
35 ]
36 [ run ../example/timex.cpp
37 : echo "Hello, world"
38 :
39 : <test-info>always_show_run_output
40 ]
41 [ compile original_timer_test.cpp
42 ]
43 # [ run /boost/tools/inspect//inspect/<variant>release
44 # : $(parent) -text -brief # command line
45 # : # input files
46 # : <dependency>/boost/filesystem//boost_filesystem
47 # <test-info>always_show_run_output # requirements
48 # : inspect # test name
49 # ]
50 ;