Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/functional/hash/test/Jamfile.v2 @ 29

Last change on this file since 29 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 1.4 KB
Line 
1
2#  Copyright Daniel James 2005-2006. Use, modification, and distribution are
3#  subject to the Boost Software License, Version 1.0. (See accompanying
4#  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6import testing ;
7
8project hash-tests
9    : requirements
10        <toolset>gcc:<define>_GLIBCXX_DEBUG
11    ;
12
13test-suite functional/hash
14    :
15        [ run hash_fwd_test_1.cpp ]
16        [ run hash_fwd_test_2.cpp ]
17        [ run hash_number_test.cpp ]
18        [ run hash_pointer_test.cpp ]
19        [ run hash_function_pointer_test.cpp ]
20        [ run hash_float_test.cpp : : : <test-info>always_show_run_output ]
21        [ run hash_string_test.cpp ]
22        [ run hash_range_test.cpp ]
23        [ run hash_custom_test.cpp ]
24        [ run hash_global_namespace_test.cpp ]
25        [ run hash_friend_test.cpp ]
26        [ run hash_built_in_array_test.cpp ]
27        [ run hash_value_array_test.cpp ]
28        [ run hash_vector_test.cpp ]
29        [ run hash_list_test.cpp ]
30        [ run hash_deque_test.cpp ]
31        [ run hash_set_test.cpp ]
32        [ run hash_map_test.cpp ]
33        [ run link_test.cpp link_test_2.cpp ]
34        [ run link_ext_test.cpp link_no_ext_test.cpp ]
35        [ run container_fwd_test.cpp ]
36        [ compile-fail hash_no_ext_fail_test.cpp ]
37        [ run hash_no_ext_macro_1.cpp ]
38        [ run hash_no_ext_macro_2.cpp ]
39    ;
40
41build-project ../examples ;
Note: See TracBrowser for help on using the repository browser.