]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/filesystem/test/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / filesystem / test / Jamfile.v2
CommitLineData
7c673cae
FG
1# Boost Filesystem Library test Jamfile
2
3# (C) Copyright Beman Dawes 2002-2006
4# Distributed under the Boost Software License, Version 1.0.
5# See www.boost.org/LICENSE_1_0.txt
6
7project
8 : requirements
9 <library>/boost/filesystem//boost_filesystem
10 <library>/boost/system//boost_system
11 <toolset>msvc:<asynch-exceptions>on
12 ;
13
14# Some tests are run both statically and as shared libraries since Filesystem
15# has a history of bugs that appear only in one type of build or the other.
16
17 test-suite "filesystem" :
b32b8144
FG
18 [ run config_info.cpp : : : <link>shared <test-info>always_show_run_output ]
19 [ run config_info.cpp : : : <link>static <test-info>always_show_run_output : config_info_static ]
7c673cae
FG
20 [ run convenience_test.cpp ]
21 [ compile macro_default_test.cpp ]
22 [ run odr1_test.cpp odr2_test.cpp ]
23 [ run deprecated_test.cpp ]
24 [ run fstream_test.cpp ]
25 [ run large_file_support_test.cpp ]
26 [ run locale_info.cpp : : : <test-info>always_show_run_output ]
27 [ run operations_test.cpp : : : <link>shared <test-info>always_show_run_output ]
28 [ run operations_test.cpp : : : <link>static : operations_test_static ]
29 [ run operations_unit_test.cpp : : : <link>shared <test-info>always_show_run_output ]
30 [ run path_test.cpp : : : <link>shared ]
31 [ run path_test.cpp : : : <link>static : path_test_static ]
32 [ run path_unit_test.cpp : : : <link>shared ]
33 [ run path_unit_test.cpp : : : <link>static : path_unit_test_static ]
34 [ run relative_test.cpp ]
35 [ run ../example/simple_ls.cpp ]
36 [ run ../example/file_status.cpp ]
37
38 ;