mirror of
https://github.com/boostorg/boost.git
synced 2025-04-07 06:24:59 +00:00
Merged changes from release branch.
[SVN r15976]
This commit is contained in:
parent
09d8c9b002
commit
294b8d1bdc
6 changed files with 220 additions and 18 deletions
|
@ -26,6 +26,7 @@
|
|||
<p> When not hunched over in front of an <a href="http://www.xemacs.org">XEmacs</a> window, Doug looks to his wife Amy to help him navigate through the daylight. Once there, he enjoys tennis and the occasional game of paintball.
|
||||
|
||||
<p>Email: <a href="mailto:gregod@cs.rpi.edu">gregod@cs.rpi.edu</a></p>
|
||||
<p>Home page: <a href="http://www.cs.rpi.edu/~gregod"><code>http://www.cs.rpi.edu/~gregod</code></a>
|
||||
|
||||
</body>
|
||||
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 280 KiB After Width: | Height: | Size: 26 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 3.3 KiB |
191
status/Jamfile
191
status/Jamfile
|
@ -140,6 +140,11 @@ include testing.jam ;
|
|||
[ run libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp <lib>../libs/test/build/test_exec_monitor ]
|
||||
;
|
||||
|
||||
test-suite format
|
||||
: [ run libs/format/test/format_test1.cpp <lib>../libs/test/build/test_exec_monitor ]
|
||||
[ run libs/format/test/format_test2.cpp <lib>../libs/test/build/test_exec_monitor ]
|
||||
;
|
||||
|
||||
test-suite function
|
||||
: [ run libs/function/test/deprecated_syntax_test.cpp <lib>../libs/test/build/test_exec_monitor ]
|
||||
[ run libs/function/test/function_test.cpp <lib>../libs/test/build/test_exec_monitor ]
|
||||
|
@ -298,19 +303,186 @@ include testing.jam ;
|
|||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
]
|
||||
|
||||
[ run libs/regex/example/timer/regex_timer.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
$(BOOST_ROOT)$(SLASH)libs$(SLASH)regex$(SLASH)example$(SLASH)timer$(SLASH)input_script.txt
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
regex_timer
|
||||
]
|
||||
|
||||
[ run libs/regex/example/jgrep/jgrep.cpp libs/regex/example/jgrep/main.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
-n boost/ $(BOOST_ROOT)$(SLASH)boost$(SLASH)regex.hpp
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
jgrep
|
||||
]
|
||||
|
||||
[ run libs/regex/example/snippets/credit_card_example.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
credit_card_example
|
||||
]
|
||||
|
||||
[ run libs/regex/example/snippets/partial_regex_grep.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
$(BOOST_ROOT)$(SLASH)libs$(SLASH)regex$(SLASH)index.htm
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
partial_regex_grep
|
||||
]
|
||||
|
||||
[ run libs/regex/example/snippets/partial_regex_match.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
1234-5678-8765-4
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
partial_regex_match
|
||||
]
|
||||
|
||||
[ run libs/regex/example/snippets/regex_grep_example_1.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
$(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
regex_grep_example_1
|
||||
]
|
||||
|
||||
[ run libs/regex/example/snippets/regex_grep_example_2.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
$(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
regex_grep_example_2
|
||||
]
|
||||
|
||||
[ run libs/regex/example/snippets/regex_grep_example_3.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
$(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
regex_grep_example_3
|
||||
]
|
||||
|
||||
[ run libs/regex/example/snippets/regex_grep_example_4.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
$(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
regex_grep_example_4
|
||||
]
|
||||
|
||||
[ run libs/regex/example/snippets/regex_match_example.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
-auto
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
regex_match_example
|
||||
]
|
||||
|
||||
[ run libs/regex/example/snippets/regex_merge_example.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
$(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
regex_merge_example
|
||||
]
|
||||
|
||||
[ run libs/regex/example/snippets/regex_search_example.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
$(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
regex_search_example
|
||||
]
|
||||
|
||||
[ run libs/regex/example/snippets/regex_split_example_1.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
-auto
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
regex_split_example_1
|
||||
]
|
||||
|
||||
[ run libs/regex/example/snippets/regex_split_example_2.cpp
|
||||
<lib>../libs/regex/build/boost_regex$(SUFLIB)
|
||||
:
|
||||
$(BOOST_ROOT)$(SLASH)libs$(SLASH)regex$(SLASH)index.htm
|
||||
:
|
||||
:
|
||||
<define>BOOST_REGEX_NO_LIB=1
|
||||
<define>BOOST_REGEX_STATIC_LINK=1
|
||||
:
|
||||
regex_split_example_2
|
||||
]
|
||||
|
||||
;
|
||||
|
||||
}
|
||||
|
||||
test-suite signals
|
||||
: [ run libs/signals/test/dead_slot_test.cpp
|
||||
<lib>../libs/test/build/test_exec_monitor
|
||||
: [ run libs/signals/test/dead_slot_test.cpp
|
||||
<lib>../libs/test/build/test_exec_monitor
|
||||
<lib>../libs/signals/build/boost_signals$(SUFLIB) ]
|
||||
[ run libs/signals/test/deletion_test.cpp
|
||||
<lib>../libs/test/build/test_exec_monitor
|
||||
[ run libs/signals/test/deletion_test.cpp
|
||||
<lib>../libs/test/build/test_exec_monitor
|
||||
<lib>../libs/signals/build/boost_signals$(SUFLIB) ]
|
||||
[ run libs/signals/test/ordering_test.cpp
|
||||
<lib>../libs/test/build/test_exec_monitor
|
||||
[ run libs/signals/test/ordering_test.cpp
|
||||
<lib>../libs/test/build/test_exec_monitor
|
||||
<lib>../libs/signals/build/boost_signals$(SUFLIB) ]
|
||||
[ run libs/signals/test/signal_n_test.cpp
|
||||
<lib>../libs/test/build/test_exec_monitor
|
||||
|
@ -444,6 +616,7 @@ include testing.jam ;
|
|||
libs/numeric/ublas/test1/test11.cpp
|
||||
libs/numeric/ublas/test1/test12.cpp
|
||||
libs/numeric/ublas/test1/test13.cpp
|
||||
: # args
|
||||
: # input files
|
||||
: # requirements
|
||||
|
||||
|
@ -454,6 +627,7 @@ include testing.jam ;
|
|||
libs/numeric/ublas/test2/test21.cpp
|
||||
libs/numeric/ublas/test2/test22.cpp
|
||||
libs/numeric/ublas/test2/test23.cpp
|
||||
: # args
|
||||
: # input files
|
||||
: # requirements
|
||||
|
||||
|
@ -464,6 +638,7 @@ include testing.jam ;
|
|||
libs/numeric/ublas/test3/test31.cpp
|
||||
libs/numeric/ublas/test3/test32.cpp
|
||||
libs/numeric/ublas/test3/test33.cpp
|
||||
: # args
|
||||
: # input files
|
||||
: # requirements
|
||||
|
||||
|
@ -474,6 +649,7 @@ include testing.jam ;
|
|||
libs/numeric/ublas/test4/test41.cpp
|
||||
libs/numeric/ublas/test4/test42.cpp
|
||||
libs/numeric/ublas/test4/test43.cpp
|
||||
: # args
|
||||
: # input files
|
||||
: # requirements
|
||||
|
||||
|
@ -484,6 +660,7 @@ include testing.jam ;
|
|||
libs/numeric/ublas/test5/test51.cpp
|
||||
libs/numeric/ublas/test5/test52.cpp
|
||||
libs/numeric/ublas/test5/test53.cpp
|
||||
: # args
|
||||
: # input files
|
||||
: # requirements
|
||||
|
||||
|
@ -494,6 +671,7 @@ include testing.jam ;
|
|||
libs/numeric/ublas/test6/test61.cpp
|
||||
libs/numeric/ublas/test6/test62.cpp
|
||||
libs/numeric/ublas/test6/test63.cpp
|
||||
: # args
|
||||
: # input files
|
||||
: # requirements
|
||||
|
||||
|
@ -501,6 +679,7 @@ include testing.jam ;
|
|||
<borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
|
||||
]
|
||||
[ run libs/numeric/ublas/concepts.cpp
|
||||
: # args
|
||||
: # input files
|
||||
: # requirements
|
||||
|
||||
|
|
|
@ -80,9 +80,9 @@ current release
|
|||
code from the <a href="http://www.boost.org">www.boost.org</a> web site.</p>
|
||||
|
||||
<p>Select the <b>CVS</b> links if you want to know the status of the code in the
|
||||
Boost <a href="../more/download.html#CVS">CVS repository</a>. Because this
|
||||
code is being updated several times a day, it may contain bug fixes, compiler
|
||||
workarounds, new features, and even whole new libraries. It is often unstable,
|
||||
Boost <a href="../more/download.html#CVS">CVS repository</a>. The CVS
|
||||
code is being updated several times a day, so it may contain bug fixes, compiler
|
||||
workarounds, new features, and even whole new libraries. It may be unstable,
|
||||
however.</p>
|
||||
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
|
@ -350,7 +350,7 @@ above. </p>
|
|||
<hr>
|
||||
|
||||
<p>Revised <!--webbot bot="Timestamp" startspan s-type="EDITED"
|
||||
s-format="%d %B %Y" -->19 September 2002<!--webbot bot="Timestamp"
|
||||
i-checksum="39506" endspan --></p>
|
||||
s-format="%d %B %Y" -->11 October 2002<!--webbot bot="Timestamp"
|
||||
i-checksum="32212" endspan --></p>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<td><img border="0" src="../c++boost.gif" width="277" height="86"></td>
|
||||
<td>
|
||||
<h1>Compiler Status: Win32</h1>
|
||||
<b>Run Date:</b> 14:39:53 UTC, Thursday 19 September 2002
|
||||
<b>Run Date:</b> 15:12:44 UTC, Friday 11 October 2002
|
||||
</td>
|
||||
</table>
|
||||
<br>
|
||||
|
@ -65,9 +65,11 @@
|
|||
<tr><td><a href="../libs/date_time/index.html">date_time</a></td><td><a href="../libs/date_time/test/testtime_resolution_traits.cpp">testtime_resolution_traits</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/date_time/index.html">date_time</a></td><td><a href="../libs/date_time/test/testwrapping_int.cpp">testwrapping_int</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/disjoint_sets/index.html">disjoint_sets</a></td><td><a href="../libs/disjoint_sets/disjoint_set_test.cpp">disjoint_set_test</a></td><td>run</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/dynamic_bitset/index.html">dynamic_bitset</a></td><td><a href="../libs/dynamic_bitset/dyn_bitset_unit_tests1.cpp">dyn_bitset_unit_tests1</a></td><td>run</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/dynamic_bitset/index.html">dynamic_bitset</a></td><td><a href="../libs/dynamic_bitset/dyn_bitset_unit_tests2.cpp">dyn_bitset_unit_tests2</a></td><td>run</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/dynamic_bitset/index.html">dynamic_bitset</a></td><td><a href="../libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp">dyn_bitset_unit_tests3</a></td><td>run</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/dynamic_bitset/index.html">dynamic_bitset</a></td><td><a href="../libs/dynamic_bitset/dyn_bitset_unit_tests1.cpp">dyn_bitset_unit_tests1</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/dynamic_bitset/index.html">dynamic_bitset</a></td><td><a href="../libs/dynamic_bitset/dyn_bitset_unit_tests2.cpp">dyn_bitset_unit_tests2</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/dynamic_bitset/index.html">dynamic_bitset</a></td><td><a href="../libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp">dyn_bitset_unit_tests3</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/format/index.htm">format</a></td><td><a href="../libs/format/test/format_test1.cpp">format_test1</a></td><td>run</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/format/index.htm">format</a></td><td><a href="../libs/format/test/format_test2.cpp">format_test2</a></td><td>run</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/function/index.html">function</a></td><td><a href="../libs/function/test/allocator_test.cpp">allocator_test</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td><font color="#FF0000"><big><i>Fail</i></big></font></td></tr>
|
||||
<tr><td><a href="../libs/function/index.html">function</a></td><td><a href="../libs/function/test/deprecated_syntax_test.cpp">deprecated_syntax_test</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/function/index.html">function</a></td><td><a href="../libs/function/test/function_n_test.cpp">function_n_test</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
|
@ -75,10 +77,10 @@
|
|||
<tr><td><a href="../libs/function/index.html">function</a></td><td><a href="../libs/function/test/function_test_fail1.cpp">function_test_fail1</a></td><td>compile-fail</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/function/index.html">function</a></td><td><a href="../libs/function/test/function_test_fail2.cpp">function_test_fail2</a></td><td>compile-fail</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/function/index.html">function</a></td><td><a href="../libs/function/test/stateless_test.cpp">stateless_test</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/graph/doc/index.html">graph</a></td><td><a href="../libs/graph/test/graph.cpp">graph</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/graph/index.html">graph</a></td><td><a href="../libs/graph/test/graph.cpp">graph</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/integer/index.htm">integer</a></td><td><a href="../libs/integer/cstdint_test.cpp">cstdint_test</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/integer/index.htm">integer</a></td><td><a href="../libs/integer/integer_test.cpp">integer_test</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/integer/index.htm">integer</a></td><td><a href="../libs/integer/integer_traits_test.cpp">integer_traits_test</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/integer/index.htm">integer</a></td><td><a href="../libs/integer/integer_traits_test.cpp">integer_traits_test</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/io/index.html">io</a></td><td><a href="../libs/io/test/ios_state_test.cpp">ios_state_test</a></td><td>run</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/lambda/index.html">lambda</a></td><td><a href="../libs/lambda/test/bind_tests_advanced.cpp">bind_tests_advanced</a></td><td>run</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td><font color="#FF0000"><big><i>Fail</i></big></font></td></tr>
|
||||
<tr><td><a href="../libs/lambda/index.html">lambda</a></td><td><a href="../libs/lambda/test/bind_tests_simple.cpp">bind_tests_simple</a></td><td>run</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td></tr>
|
||||
|
@ -132,7 +134,13 @@
|
|||
<tr><td><a href="../libs/multi_array/index.html">multi_array</a></td><td><a href="../libs/multi_array/test/slice.cpp">slice</a></td><td>run</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/multi_array/index.html">multi_array</a></td><td><a href="../libs/multi_array/test/stl_interaction.cpp">stl_interaction</a></td><td>run</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td></tr>
|
||||
<tr><td><a href="../libs/multi_array/index.html">multi_array</a></td><td><a href="../libs/multi_array/test/storage_order.cpp">storage_order</a></td><td>run</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/numeric/index.html">numeric</a></td><td><a href="../libs/numeric/ublas/test1/test1.cpp">test1</a></td><td>run</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/numeric/index.html">numeric</a></td><td><a href="../libs/numeric/ublas/concepts.cpp">concepts</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/numeric/index.html">numeric</a></td><td><a href="../libs/numeric/ublas/test1/test1.cpp">test1</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/numeric/index.html">numeric</a></td><td><a href="../libs/numeric/ublas/test2/test2.cpp">test2</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/numeric/index.html">numeric</a></td><td><a href="../libs/numeric/ublas/test3/test3.cpp">test3</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/numeric/index.html">numeric</a></td><td><a href="../libs/numeric/ublas/test4/test4.cpp">test4</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/numeric/index.html">numeric</a></td><td><a href="../libs/numeric/ublas/test5/test5.cpp">test5</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/numeric/index.html">numeric</a></td><td><a href="../libs/numeric/ublas/test6/test6.cpp">test6</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/pool/index.html">pool</a></td><td><a href="../libs/pool/test/test_pool_alloc.cpp">test_pool_alloc</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td><font color="#FF0000"><big><i>Fail</i></big></font></td></tr>
|
||||
<tr><td><a href="../libs/preprocessor/index.html">preprocessor</a></td><td><a href="../libs/preprocessor/regression/arithmetic.cpp">arithmetic</a></td><td>compile</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/preprocessor/index.html">preprocessor</a></td><td><a href="../libs/preprocessor/regression/array.cpp">array</a></td><td>compile</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
|
@ -152,6 +160,20 @@
|
|||
<tr><td><a href="../libs/random/index.html">random</a></td><td><a href="../libs/random/random_test.cpp">random_test</a></td><td>run</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/rational/index.html">rational</a></td><td><a href="../libs/rational/rational_example.cpp">rational_example</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/rational/index.html">rational</a></td><td><a href="../libs/rational/rational_test.cpp">rational_test</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/jgrep/jgrep.cpp">jgrep</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/snippets/credit_card_example.cpp">credit_card_example</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/snippets/partial_regex_grep.cpp">partial_regex_grep</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/snippets/partial_regex_match.cpp">partial_regex_match</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/snippets/regex_grep_example_1.cpp">regex_grep_example_1</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/snippets/regex_grep_example_2.cpp">regex_grep_example_2</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/snippets/regex_grep_example_3.cpp">regex_grep_example_3</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/snippets/regex_grep_example_4.cpp">regex_grep_example_4</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/snippets/regex_match_example.cpp">regex_match_example</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/snippets/regex_merge_example.cpp">regex_merge_example</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/snippets/regex_search_example.cpp">regex_search_example</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/snippets/regex_split_example_1.cpp">regex_split_example_1</a></td><td>run</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/snippets/regex_split_example_2.cpp">regex_split_example_2</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/example/timer/regex_timer.cpp">regex_timer</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/test/c_compiler_checks/posix_api_check.c">posix_api_check_c</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/test/c_compiler_checks/posix_api_check.cpp">posix_api_check</a></td><td>run</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td><td>Pass</td></tr>
|
||||
<tr><td><a href="../libs/regex/index.htm">regex</a></td><td><a href="../libs/regex/test/c_compiler_checks/wide_posix_api_check.c">wide_posix_api_check_c</a></td><td>run</td><td>Pass</td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td><font color="#FF0000"><big><i>Fail</i></big></font></td><td>Pass</td><td>Pass</td></tr>
|
||||
|
|
Loading…
Add table
Reference in a new issue