]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/filesystem/test/Jamfile.v2
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / filesystem / test / Jamfile.v2
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
7 import testing ;
8 import os ;
9
10 project
11 : requirements
12 <library>/boost/filesystem//boost_filesystem
13 ;
14
15 # Some tests are run both statically and as shared libraries since Filesystem
16 # has a history of bugs that appear only in one type of build or the other.
17
18 path-constant HERE : . ;
19
20 local VIS ;
21
22 if [ os.environ UBSAN ]
23 {
24 VIS = <visibility>global
25 -<library>/boost/filesystem//boost_filesystem
26 <library>/boost/filesystem//boost_filesystem/<visibility>global ;
27 }
28
29 run config_info.cpp : : : <link>shared <test-info>always_show_run_output ;
30 run config_info.cpp : : : <link>static <test-info>always_show_run_output : config_info_static ;
31 run convenience_test.cpp ;
32 compile macro_default_test.cpp ;
33 run odr1_test.cpp odr2_test.cpp ;
34 run deprecated_test.cpp ;
35 run fstream_test.cpp : : : $(VIS) ;
36 run large_file_support_test.cpp ;
37 run locale_info.cpp : : : <test-info>always_show_run_output ;
38 run operations_test.cpp : : : <link>shared <test-info>always_show_run_output ;
39 run operations_test.cpp : : : <link>static : operations_test_static ;
40 run operations_unit_test.cpp : $(HERE) : : <link>shared <test-info>always_show_run_output ;
41 run path_test.cpp : : : <link>shared ;
42 run path_test.cpp : : : <link>static : path_test_static ;
43 run path_unit_test.cpp : : : <link>shared $(VIS) ;
44 run path_unit_test.cpp : : : <link>static $(VIS) : path_unit_test_static ;
45 run relative_test.cpp ;
46 run ../example/simple_ls.cpp ;
47 run ../example/file_status.cpp ;
48 run foreach_test.cpp ;
49
50 # `quick` target (for CI)
51 run quick.cpp ;
52
53 # Tests for specific issues
54 run issues/70-71-copy.cpp ;