]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/filesystem/test/Jamfile.v2
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / filesystem / test / Jamfile.v2
index 11b411ea379b9c09a37d69c7c9c180cb73b12f8e..51556f3667fb83a9996ef64568fa0ec65d3d15e3 100644 (file)
@@ -4,6 +4,8 @@
 # Distributed under the Boost Software License, Version 1.0.
 # See www.boost.org/LICENSE_1_0.txt
 
+import testing ;
+
 project 
     : requirements
       <library>/boost/filesystem//boost_filesystem
@@ -14,6 +16,8 @@ project
 # Some tests are run both statically and as shared libraries since Filesystem
 # has a history of bugs that appear only in one type of build or the other.
 
+path-constant HERE : . ;
+
    test-suite "filesystem" :
        [ run config_info.cpp :  :  : <link>shared <test-info>always_show_run_output ]
        [ run config_info.cpp :  :  : <link>static <test-info>always_show_run_output : config_info_static ]
@@ -26,7 +30,7 @@ project
        [ run locale_info.cpp  : : : <test-info>always_show_run_output ]
        [ run operations_test.cpp :  :  : <link>shared <test-info>always_show_run_output ]
        [ run operations_test.cpp :  :  : <link>static : operations_test_static ]
-       [ run operations_unit_test.cpp :  :  : <link>shared <test-info>always_show_run_output ]
+       [ run operations_unit_test.cpp : $(HERE) :  : <link>shared <test-info>always_show_run_output ]
        [ run path_test.cpp :  :  : <link>shared ]                  
        [ run path_test.cpp :  :  : <link>static : path_test_static ]                  
        [ run path_unit_test.cpp :  :  : <link>shared ]                  
@@ -35,4 +39,6 @@ project
        [ run ../example/simple_ls.cpp ]
        [ run ../example/file_status.cpp ]
 
+       # `quick` target (for CI)
+       [ run quick.cpp ]
        ;