mirror of
https://github.com/boostorg/boost.git
synced 2025-04-14 00:50:40 +00:00
Modified Files:
index.htm - fixed reference to CVS repository libs/python/build/Jamfile - first stab at metrowerks Pro7 support status/Jamfile - added RUN_ALL_TESTS variables to force tests to run tools/build/boost-build.jam - fix BOOST_BUILD_INSTALLATION setting tools/build/metrowerks-tools.jam - command file support tools/build/msvc-tools.jam - permanent command file support tools/build/intel-win32-tools.jam - made it an extension of msvc-tools.jam tools/build/gcc-tools.jam - made FINDLIBS change submitted by Toon Knapen tools/build/jam_src/variable.c - changed command-line/env. variable interpretation so that surrounding them with quotes causes no breaking at spaces. These files were converted from tabs to spaces: boost/python/conversions.hpp boost/python/reference.hpp boost/python/detail/base_object.hpp boost/python/detail/functions.hpp boost/python/detail/wrap_python.hpp libs/python/test/comprehensive.cpp tools/build/boost-base.jam tools/build/como-tools.jam [SVN r11652]
This commit is contained in:
parent
8ba7ab8e35
commit
7561c2e5c5
4 changed files with 18 additions and 6 deletions
|
@ -46,7 +46,7 @@ Welcome to Boost.org!</h1>
|
|||
<p><b>Other Resources<br>
|
||||
</b>• <a href="http://www.yahoogroups.com/files/boost/">Files</a>
|
||||
(members only)<br>
|
||||
• <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/boost/boost/">CVS
|
||||
• <a href="http://sourceforge.net/cvs/?group_id=7586">CVS
|
||||
Repository<br>
|
||||
</a>• <a href="http://www.crystalclearsoftware.com/cgi-bin/boost_wiki/wiki.pl">Wiki</a>
|
||||
(unofficial)<br>
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit b4a1a6c688d37d831fb7229feeb9f8c14a6015a4
|
||||
Subproject commit b211f8a096c8902442fb5e655ed01928816d5909
|
|
@ -138,6 +138,11 @@ rule run-test # target : sources : requirements
|
|||
INPUT_FILES on $(<) = $(gRUN_TEST_INPUT_FILES) ;
|
||||
ARGS on $(<) = $(gRUN_TEST_ARGS) ;
|
||||
capture-run-output $(<) : $(executable) ;
|
||||
|
||||
if $(RUN_ALL_TESTS)
|
||||
{
|
||||
ALWAYS $(<) ;
|
||||
}
|
||||
}
|
||||
actions capture-run-output bind INPUT_FILES
|
||||
{
|
||||
|
@ -261,7 +266,14 @@ run-fail libs/test/test/test_tools_fail2.cpp ;
|
|||
|
||||
compile libs/timer/timer_test.cpp ;
|
||||
|
||||
run libs/tokenizer/examples.cpp ;
|
||||
test-suite tokenizer
|
||||
: [ run libs/tokenizer/examples.cpp ]
|
||||
[ run libs/tokenizer/simple_example_1.cpp ]
|
||||
[ run libs/tokenizer/simple_example_2.cpp ]
|
||||
[ run libs/tokenizer/simple_example_3.cpp ]
|
||||
[ run libs/tokenizer/simple_example_4.cpp ]
|
||||
[ run libs/tokenizer/simple_example_5.cpp ]
|
||||
;
|
||||
|
||||
test-suite type_traits
|
||||
: [ run libs/type_traits/tests/alignment_test.cpp ]
|
||||
|
@ -293,9 +305,9 @@ test-suite iterator_adaptors
|
|||
[ run libs/utility/iterator_adaptor_examples.cpp ]
|
||||
[ run libs/utility/counting_iterator_example.cpp ]
|
||||
[ run libs/utility/filter_iterator_example.cpp ]
|
||||
[ run libs/utility/fun_out_iterator_example.cpp ]
|
||||
[ run libs/utility/fun_out_iter_example.cpp ]
|
||||
[ run libs/utility/indirect_iterator_example.cpp ]
|
||||
[ run libs/utility/projection_iterator_examples.cpp ]
|
||||
[ run libs/utility/projection_iterator_example.cpp ]
|
||||
[ run libs/utility/reverse_iterator_example.cpp ]
|
||||
[ run libs/utility/transform_iterator_example.cpp ]
|
||||
;
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit de59a71012c6325adb40e6770bd1647db934536c
|
||||
Subproject commit 4f7a212d2bcb57dfb8ba4c381e0bedf74333a02b
|
Loading…
Add table
Reference in a new issue