]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/sort/test/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / sort / test / Jamfile.v2
1 # Boost sorting_algo library test suite Jamfile ----------------------------
2 #
3 # Copyright Steven Ross 2009. Use, modification and
4 # distribution is subject to the Boost Software License, Version
5 # 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 # http://www.boost.org/LICENSE_1_0.txt)
7 #
8 # See http://www.boost.org/libs/sort for library home page.
9
10 import testing ;
11
12 {
13 test-suite "sort"
14 : [ run integer_sort_test.cpp
15 : : : : integer_sort ]
16 [ run float_sort_test.cpp
17 : : : : float_sort ]
18 [ run string_sort_test.cpp
19 : : : : string_sort ]
20 [ run sort_detail_test.cpp
21 : : : : sort_detail ]
22
23
24 ;
25 }