Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/smart_ptr/test/Jamfile.v2 @ 20

Last change on this file since 20 was 12, checked in by landauf, 17 years ago

added boost

File size: 1.1 KB
Line 
1#  Boost.SmartPtr Library test Jamfile
2#
3#  Copyright (c) 2003-2005 Peter Dimov
4#  Copyright (c) 2003 Dave Abrahams
5#
6#  Permission to copy, use, modify, sell and distribute this software
7#  is granted provided this copyright notice appears in all copies.
8#  This software is provided "as is" without express or implied
9#  warranty, and with no claim as to its suitability for any purpose.
10
11# bring in rules for testing
12import testing ;
13
14{
15    test-suite "smart_ptr"
16        : [ run smart_ptr_test.cpp ]
17          [ run shared_ptr_basic_test.cpp : : : <toolset>gcc:<cxxflags>-Wno-non-virtual-dtor ]
18          [ run shared_ptr_test.cpp : : : <toolset>gcc:<cxxflags>-Wno-non-virtual-dtor ]
19          [ run weak_ptr_test.cpp ]
20          [ run shared_from_this_test.cpp : : : <toolset>gcc:<cxxflags>-Wno-non-virtual-dtor ]
21          [ run get_deleter_test.cpp ]
22          [ run intrusive_ptr_test.cpp ]
23          [ run atomic_count_test.cpp ]
24          [ run lw_mutex_test.cpp ]
25          [ compile-fail shared_ptr_assign_fail.cpp ]
26          [ compile-fail shared_ptr_delete_fail.cpp ]
27        ;
28}
Note: See TracBrowser for help on using the repository browser.