Results of improved regex tests

[SVN r8013]
This commit is contained in:
Beman Dawes 2000-10-19 21:21:33 +00:00
parent f6c4fe7ef5
commit 2444223bda
2 changed files with 13 additions and 6 deletions

View file

@ -6,7 +6,7 @@ Compiler Status: Windows NT / Windows 2000
</head><body bgcolor="#FFFFFF" text="#000000">
<h1><img border="0" src="../c++boost.gif" width="277" height="86"></h1>
<h1>Compiler Status: Windows NT / Windows 2000</h1>
<p><b>Run Date:</b> 16 Oct 2000 12:09 GMT</p>
<p><b>Run Date:</b> 19 Oct 2000 12:34 GMT</p>
<p>
<table border="1" cellspacing="0" cellpadding="5">
<tr>
@ -39,7 +39,7 @@ Compiler Status: Windows NT / Windows 2000
</tr>
<tr>
<td><a href="graph/test/graph.cpp">graph/test/graph.cpp</a></td>
<td>no</td>
<td>yes</td>
<td>no</td>
<td>yes</td>
<td>yes</td>
@ -87,10 +87,17 @@ Compiler Status: Windows NT / Windows 2000
<td>no</td>
</tr>
<tr>
<td><a href="regex/src/cregex.cpp">regex/src/cregex.cpp</a></td>
<td><a href="regex/demo/regress/regex_test.cpp">regex/demo/regress/regex_test.cpp</a></td>
<td>yes</td>
<td>no</td>
<td>no</td>
<td>yes</td>
</tr>
<tr>
<td><a href="regex/demo/regress/wregex_test.cpp">regex/demo/regress/wregex_test.cpp</a></td>
<td>yes</td>
<td>no</td>
<td>no</td>
<td>yes</td>
</tr>
<tr>

View file

@ -86,7 +86,7 @@ def compile( program ):
# invoke( "Borland C++ 5.4 up2", "\"" + bcc54_path + "/bcc32\" -I" + path + " -j10 -q " + fullpath )
if compiler_arg=="*" or compiler_arg=="bcc":
bcc55_path=os.environ["BOOST_BCC55_PATH"]
invoke( "Borland C++ 5.5.1", "\"" + bcc55_path + "/bcc32\" -I" + path + " -c -j10 -q " + fullpath )
invoke( "Borland C++ 5.5.1", "\"" + bcc55_path + "/bcc32\" -I" + path + " -j10 -q " + fullpath )
# GCC 2.95.2 is looping on some tests, so only invoke if asked for by name
#if compiler_arg=="*" or compiler_arg=="gcc":
@ -95,11 +95,11 @@ def compile( program ):
invoke( "GNU GCC", "c++ -ftemplate-depth-30 -I" + path + " -IC:/stl/STLport-4.0b8/stlport " + fullpath + " c:/stl/STLport-4.0b8/lib/libstlport_gcc.a" )
if compiler_arg=="*" or compiler_arg=="cw":
invoke( "Metrowerks CodeWarrior", "mwcc -nolink -maxerrors 10 -cwd source -I- -I" + path + " " + fullpath )
invoke( "Metrowerks CodeWarrior", "mwcc -maxerrors 10 -cwd source -I- -I" + path + " " + fullpath )
#John Maddock says use /Zm400 switch; it increases compiler memory
if compiler_arg=="*" or compiler_arg=="vc":
invoke( "VC++ with MS library", 'cl /c /nologo /Zm400 /MDd /W3 /GR /GX /Zi /Od /GZ /I "' + path + '" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_CONSOLE" ' + fullpath )
invoke( "VC++ with MS library", 'cl /nologo /Zm400 /MDd /W3 /GR /GX /Zi /Od /GZ /I "' + path + '" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_CONSOLE" ' + fullpath )
if compiler_arg=="*" or compiler_arg=="vcstlport":
stl=os.environ["BOOST_STLPORT_PATH"]
invoke( "VC++ with STLport library", 'cl /c /nologo /Zm400 /MDd /W3 /GR /GX /Zi /Od /GZ /I "' + stl + '" /I "' + path + '" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_CONSOLE" ' + fullpath )