You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by vi...@apache.org on 2008/06/07 04:24:26 UTC

svn commit: r664244 [3/3] - in /stdcxx/branches/4.3.x: etc/config/ examples/include/ examples/tutorial/ include/ src/ tests/algorithms/ tests/containers/ tests/diagnostics/ tests/include/ tests/intro/ tests/iostream/ tests/iterators/ tests/localization...

Modified: stdcxx/branches/4.3.x/tests/src/valcmp.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/src/valcmp.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/src/valcmp.cpp (original)
+++ stdcxx/branches/4.3.x/tests/src/valcmp.cpp Fri Jun  6 19:24:19 2008
@@ -27,7 +27,7 @@
 // expand _TEST_EXPORT macros
 #define _RWSTD_TEST_SRC
 
-#include <valcmp.h>
+#include <rw_valcmp.h>
 
 #include <stdio.h>    // for fprintf, stderr
 #include <stdlib.h>   // for abort

Modified: stdcxx/branches/4.3.x/tests/strings/21.cctype.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.cctype.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.cctype.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.cctype.cpp Fri Jun  6 19:24:19 2008
@@ -28,7 +28,8 @@
  **************************************************************************/
 
 #include <cctype>
-#include <driver.h>
+
+#include <rw_driver.h>
 
 /**************************************************************************/
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.cwchar.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.cwchar.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.cwchar.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.cwchar.cpp Fri Jun  6 19:24:19 2008
@@ -88,8 +88,9 @@
 /**************************************************************************/
 
 #include <cwchar>
-#include <any.h>      // for rw_any_t
-#include <driver.h>   // for rw_test(), ...
+
+#include <rw_any.h>      // for rw_any_t
+#include <rw_driver.h>   // for rw_test(), ...
 
 /**************************************************************************/
 
@@ -991,7 +992,8 @@
 // included here to avoid namespace pollution
 #include <cstdarg>       // for va_list
 #include <cstdio>        // for FILE, fopen()
-#include <file.h>        // for DEV_NUL
+
+#include <rw_file.h>     // for DEV_NUL
 #include <rw_printf.h>   // for rw_stdout
 
 namespace std {

Modified: stdcxx/branches/4.3.x/tests/strings/21.cwctype.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.cwctype.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.cwctype.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.cwctype.cpp Fri Jun  6 19:24:19 2008
@@ -28,7 +28,8 @@
  **************************************************************************/
 
 #include <cwctype>
-#include <driver.h>
+
+#include <rw_driver.h>
 
 /**************************************************************************/
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.access.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.access.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.access.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.access.cpp Fri Jun  6 19:24:19 2008
@@ -30,8 +30,8 @@
 #include <cstdlib>          // for free(), size_t
 #include <stdexcept>        // for out_of_range
 
-#include <21.strings.h>     // for StringMembers
-#include <driver.h>         // for rw_test()
+#include <rw_strings.h>     // for StringMembers
+#include <rw_driver.h>      // for rw_test()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.append.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.append.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.append.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.append.cpp Fri Jun  6 19:24:19 2008
@@ -28,9 +28,9 @@
 #include <stdexcept>      // for out_of_range, length_error
 #include <cstddef>        // for size_t
 
-#include <21.strings.h>   // for StringMembers
-#include <alg_test.h>     // for InputIter
-#include <driver.h>       // for rw_test()
+#include <rw_strings.h>   // for StringMembers
+#include <rw_alg_test.h>  // for InputIter
+#include <rw_driver.h>    // for rw_test()
 #include <rw_allocator.h> // for UserAlloc
 #include <rw_char.h>      // for rw_expand()
 #include <rw_new.h>       // for bad_alloc, replacement operator new

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.assign.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.assign.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.assign.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.assign.cpp Fri Jun  6 19:24:19 2008
@@ -28,9 +28,9 @@
 #include <cstddef>        // for size_t
 #include <stdexcept>      // for out_of_range, length_error
 
-#include <21.strings.h>   // for StringMembers
-#include <alg_test.h>     // for InputIter
-#include <driver.h>       // for rw_test()
+#include <rw_strings.h>   // for StringMembers
+#include <rw_alg_test.h>  // for InputIter
+#include <rw_driver.h>    // for rw_test()
 #include <rw_allocator.h> // for UserAlloc
 #include <rw_char.h>      // for rw_expand()
 #include <rw_new.h>       // for bad_alloc, replacement operator new

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.capacity.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.capacity.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.capacity.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.capacity.cpp Fri Jun  6 19:24:19 2008
@@ -30,8 +30,8 @@
 #include <cstddef>          // for ptrdiff_t, size_t
 #include <stdexcept>        // for out_of_range
 
-#include <21.strings.h>     // for StringMembers
-#include <driver.h>         // for rw_test()
+#include <rw_strings.h>     // for StringMembers
+#include <rw_driver.h>      // for rw_test()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 #include <rw_new.h>         // for bad_alloc, replacement operator new

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.compare.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.compare.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.compare.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.compare.cpp Fri Jun  6 19:24:19 2008
@@ -30,8 +30,8 @@
 #include <cstddef>          // for size_t
 #include <stdexcept>        // for out_of_range, length_error
 
-#include <21.strings.h>     // for StringMembers
-#include <driver.h>         // for rw_assert()
+#include <rw_strings.h>     // for StringMembers
+#include <rw_driver.h>      // for rw_assert()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.cons.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.cons.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.cons.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.cons.cpp Fri Jun  6 19:24:19 2008
@@ -28,9 +28,9 @@
 #include <stdexcept>        // for out_of_range, length_error
 #include <cstddef>          // for size_t
 
-#include <21.strings.h>
-#include <alg_test.h>       // for InputIter
-#include <driver.h>         // for rw_test()
+#include <rw_strings.h>
+#include <rw_alg_test.h>    // for InputIter
+#include <rw_driver.h>      // for rw_test()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 #include <rw_new.h>         // for bad_alloc, replacement operator new

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.cons.mt.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.cons.mt.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.cons.mt.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.cons.mt.cpp Fri Jun  6 19:24:19 2008
@@ -31,9 +31,9 @@
 
 #include <cstddef>      // for size_t
 
-#include <driver.h>     // for rw_test()
+#include <rw_driver.h>  // for rw_test()
 #include <rw_thread.h>  // for rw_thread_pool(), ...
-#include <valcmp.h>     // for rw_strncmp()
+#include <rw_valcmp.h>  // for rw_strncmp()
 
 /**************************************************************************/
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.copy.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.copy.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.copy.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.copy.cpp Fri Jun  6 19:24:19 2008
@@ -30,8 +30,8 @@
 #include <cstddef>          // size_t
 #include <stdexcept>        // for out_of_range
 
-#include <21.strings.h>     // for StringMembers
-#include <driver.h>         // for rw_assert()
+#include <rw_strings.h>     // for StringMembers
+#include <rw_driver.h>      // for rw_assert()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.erase.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.erase.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.erase.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.erase.cpp Fri Jun  6 19:24:19 2008
@@ -30,8 +30,8 @@
 #include <cstddef>          // for ptrdiff_t, size_t
 #include <stdexcept>        // for out_of_range
 
-#include <21.strings.h>     // for StringMembers
-#include <driver.h>         // for rw_test()
+#include <rw_strings.h>     // for StringMembers
+#include <rw_driver.h>      // for rw_test()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 #include <rw_new.h>         // for bad_alloc, replacement operator new

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.exceptions.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.exceptions.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.exceptions.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.exceptions.cpp Fri Jun  6 19:24:19 2008
@@ -31,7 +31,7 @@
 #include <stdexcept>
 #include <string>
 
-#include <driver.h>
+#include <rw_driver.h>
 
 // uses setjmp() and longjmp() to verify correct function if exception
 // exception support is disabled

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.find.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.find.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.find.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.find.cpp Fri Jun  6 19:24:19 2008
@@ -30,8 +30,8 @@
 #include <cstddef>          // size_t
 #include <exception>        // for exception
 
-#include <21.strings.h>     // for StringMembers
-#include <driver.h>         // for rw_assert()
+#include <rw_strings.h>     // for StringMembers
+#include <rw_driver.h>      // for rw_assert()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.find.first.not.of.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.find.first.not.of.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.find.first.not.of.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.find.first.not.of.cpp Fri Jun  6 19:24:19 2008
@@ -29,8 +29,8 @@
 #include <cstdlib>          // for free(), size_t
 #include <stdexcept>        // for length_error
 
-#include <21.strings.h>     // for StringMembers
-#include <driver.h>         // for rw_test()
+#include <rw_strings.h>     // for StringMembers
+#include <rw_driver.h>      // for rw_test()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.find.first.of.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.find.first.of.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.find.first.of.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.find.first.of.cpp Fri Jun  6 19:24:19 2008
@@ -31,8 +31,8 @@
 #include <cstdlib>          // for free(), size_t
 #include <stdexcept>        // for length_error
 
-#include <21.strings.h>     // for StringMembers
-#include <driver.h>         // for rw_test()
+#include <rw_strings.h>     // for StringMembers
+#include <rw_driver.h>      // for rw_test()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.find.last.not.of.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.find.last.not.of.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.find.last.not.of.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.find.last.not.of.cpp Fri Jun  6 19:24:19 2008
@@ -31,8 +31,8 @@
 #include <cstdlib>          // for free(), size_t
 #include <stdexcept>        // for length_error
 
-#include <21.strings.h>     // for StringMembers
-#include <driver.h>         // for rw_test()
+#include <rw_strings.h>     // for StringMembers
+#include <rw_driver.h>      // for rw_test()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.find.last.of.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.find.last.of.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.find.last.of.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.find.last.of.cpp Fri Jun  6 19:24:19 2008
@@ -30,8 +30,8 @@
 #include <cstddef>          // for size_t
 #include <stdexcept>        // for length_error
 
-#include <21.strings.h>     // for StringIds
-#include <driver.h>         // for rw_test()
+#include <rw_strings.h>     // for StringIds
+#include <rw_driver.h>      // for rw_test()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.insert.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.insert.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.insert.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.insert.cpp Fri Jun  6 19:24:19 2008
@@ -28,9 +28,9 @@
 #include <stdexcept>      // for out_of_range, length_error
 #include <cstddef>        // for size_t
 
-#include <21.strings.h>   // for StringIds
-#include <alg_test.h>     // for InputIter
-#include <driver.h>       // for rw_test()
+#include <rw_strings.h>   // for StringIds
+#include <rw_alg_test.h>  // for InputIter
+#include <rw_driver.h>    // for rw_test()
 #include <rw_allocator.h> // for UserAlloc
 #include <rw_char.h>      // for rw_expand()
 #include <rw_new.h>       // for bad_alloc, replacement operator new

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.io.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.io.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.io.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.io.cpp Fri Jun  6 19:24:19 2008
@@ -31,8 +31,8 @@
 #include <ostream>        // for ostream
 #include <locale>         // for locale
 
-#include <21.strings.h>   // for StringMembers
-#include <driver.h>       // for rw_test()
+#include <rw_strings.h>   // for StringMembers
+#include <rw_driver.h>    // for rw_test()
 #include <rw_allocator.h> // for UserAlloc
 #include <rw_char.h>      // for rw_expand()
 #include <rw_ctype.h>     // for UserCtype

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.iterators.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.iterators.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.iterators.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.iterators.cpp Fri Jun  6 19:24:19 2008
@@ -30,8 +30,8 @@
 #include <stdexcept>      // for out_of_range, length_error
 #include <cstddef>        // for size_t
 
-#include <21.strings.h>   // for StringMembers
-#include <driver.h>       // for rw_test()
+#include <rw_strings.h>   // for StringMembers
+#include <rw_driver.h>    // for rw_test()
 #include <rw_allocator.h> // for UserAlloc
 #include <rw_char.h>      // for rw_expand()
 #include <rw_new.h>       // for bad_alloc, replacement operator new

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.op.plus.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.op.plus.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.op.plus.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.op.plus.cpp Fri Jun  6 19:24:19 2008
@@ -31,9 +31,9 @@
 
 #include <cstddef>        // for size_t
 
-#include <21.strings.h>   // for StringMembers
-#include <alg_test.h>     // for InputIter
-#include <driver.h>       // for rw_test()
+#include <rw_strings.h>   // for StringMembers
+#include <rw_alg_test.h>  // for InputIter
+#include <rw_driver.h>    // for rw_test()
 #include <rw_allocator.h> // for UserAlloc
 #include <rw_char.h>      // for rw_expand()
 #include <rw_new.h>       // for bad_alloc, replacement operator new

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.op.plus.equal.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.op.plus.equal.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.op.plus.equal.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.op.plus.equal.cpp Fri Jun  6 19:24:19 2008
@@ -31,9 +31,9 @@
 
 #include <cstddef>        // for size_t
 
-#include <21.strings.h>   // for StringIds
-#include <alg_test.h>     // for InputIter
-#include <driver.h>       // for rw_test()
+#include <rw_strings.h>   // for StringIds
+#include <rw_alg_test.h>  // for InputIter
+#include <rw_driver.h>    // for rw_test()
 #include <rw_allocator.h> // for UserAlloc
 #include <rw_char.h>      // for rw_expand()
 #include <rw_new.h>       // for bad_alloc, replacement operator new

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.operators.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.operators.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.operators.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.operators.cpp Fri Jun  6 19:24:19 2008
@@ -32,8 +32,8 @@
 
 #include <cstddef>        // for size_t
 
-#include <21.strings.h>   // for StringMembers
-#include <driver.h>       // for rw_test()
+#include <rw_strings.h>   // for StringMembers
+#include <rw_driver.h>    // for rw_test()
 #include <rw_allocator.h> // for UserAlloc
 #include <rw_char.h>      // for rw_expand()
 #include <rw_new.h>       // for bad_alloc, replacement operator new

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.push_back.mt.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.push_back.mt.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.push_back.mt.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.push_back.mt.cpp Fri Jun  6 19:24:19 2008
@@ -30,9 +30,9 @@
 #include <string>       // for string
 #include <cstddef>      // for size_t
 
-#include <driver.h>     // for rw_test()
+#include <rw_driver.h>  // for rw_test()
 #include <rw_thread.h>  // for rw_thread_pool(), ...
-#include <valcmp.h>     // for rw_strncmp()
+#include <rw_valcmp.h>  // for rw_strncmp()
 
 /**************************************************************************/
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.replace.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.replace.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.replace.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.replace.cpp Fri Jun  6 19:24:19 2008
@@ -30,9 +30,9 @@
 #include <stdexcept>        // for out_of_range, length_error
 #include <cstddef>          // for ptrdiff_t, size_t
 
-#include <21.strings.h>
-#include <alg_test.h>       // for InputIter
-#include <driver.h>         // for rw_test()
+#include <rw_strings.h>
+#include <rw_alg_test.h>    // for InputIter
+#include <rw_driver.h>      // for rw_test()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_new.h>         // for bad_alloc, replacement operator new
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.rfind.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.rfind.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.rfind.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.rfind.cpp Fri Jun  6 19:24:19 2008
@@ -30,8 +30,8 @@
 #include <cstdlib>          // for free(), size_t
 #include <exception>        // for exception
 
-#include <21.strings.h>     // for StringIds
-#include <driver.h>         // for rw_test()
+#include <rw_strings.h>     // for StringIds
+#include <rw_driver.h>      // for rw_test()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.substr.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.substr.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.substr.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.substr.cpp Fri Jun  6 19:24:19 2008
@@ -30,8 +30,8 @@
 #include <cstddef>          // for size_t
 #include <stdexcept>        // for out_of_range
 
-#include <21.strings.h>     // for StringIds
-#include <driver.h>         // for rw_test()
+#include <rw_strings.h>     // for StringIds
+#include <rw_driver.h>      // for rw_test()
 #include <rw_allocator.h>   // for UserAlloc
 #include <rw_char.h>        // for rw_expand()
 

Modified: stdcxx/branches/4.3.x/tests/strings/21.string.swap.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/strings/21.string.swap.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/strings/21.string.swap.cpp (original)
+++ stdcxx/branches/4.3.x/tests/strings/21.string.swap.cpp Fri Jun  6 19:24:19 2008
@@ -30,8 +30,8 @@
 #include <cstddef>          // size_t
 #include <exception>        // for exception
 
-#include <21.strings.h>     // for StringIds
-#include <driver.h>         // for rw_assert()
+#include <rw_strings.h>     // for StringIds
+#include <rw_driver.h>      // for rw_assert()
 #include <rw_allocator.h>   // foir UserAlloc
 #include <rw_char.h>        // for rw_expand()
 #include <rw_new.h>         // for bad_alloc, replacement operator new

Modified: stdcxx/branches/4.3.x/tests/support/18.csetjmp.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/support/18.csetjmp.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/support/18.csetjmp.cpp (original)
+++ stdcxx/branches/4.3.x/tests/support/18.csetjmp.cpp Fri Jun  6 19:24:19 2008
@@ -27,7 +27,8 @@
  **************************************************************************/
 
 #include <csetjmp>
-#include <driver.h>
+
+#include <rw_driver.h>
 
 /**************************************************************************/
 

Modified: stdcxx/branches/4.3.x/tests/support/18.cstdint.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/support/18.cstdint.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/support/18.cstdint.cpp (original)
+++ stdcxx/branches/4.3.x/tests/support/18.cstdint.cpp Fri Jun  6 19:24:19 2008
@@ -68,7 +68,7 @@
 };
 
 
-#include <driver.h>
+#include <rw_driver.h>
 
 #ifndef _RWSTD_NO_EXT_CXX_0X
 

Modified: stdcxx/branches/4.3.x/tests/support/18.exception.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/support/18.exception.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/support/18.exception.cpp (original)
+++ stdcxx/branches/4.3.x/tests/support/18.exception.cpp Fri Jun  6 19:24:19 2008
@@ -48,7 +48,7 @@
 # include <sys/resource.h>   // for setrlimit()
 #endif   // _RWSTD_NO_SETRLIMIT
 
-#include <driver.h>
+#include <rw_driver.h>
 
 
 #ifdef _RWSTD_OS_LINUX

Modified: stdcxx/branches/4.3.x/tests/support/18.limits.cvqual.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/support/18.limits.cvqual.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/support/18.limits.cvqual.cpp (original)
+++ stdcxx/branches/4.3.x/tests/support/18.limits.cvqual.cpp Fri Jun  6 19:24:19 2008
@@ -31,7 +31,8 @@
  **************************************************************************/
 
 #include <limits>
-#include <driver.h>
+
+#include <rw_driver.h>
 
 /**************************************************************************/
 

Modified: stdcxx/branches/4.3.x/tests/support/18.limits.traps.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/support/18.limits.traps.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/support/18.limits.traps.cpp (original)
+++ stdcxx/branches/4.3.x/tests/support/18.limits.traps.cpp Fri Jun  6 19:24:19 2008
@@ -30,9 +30,9 @@
 
 #include <csignal>    // for SIGFPE, signal
 
-#include <any.h>      // for rw_any_t
-#include <cmdopt.h>   // for rw_enabled()
-#include <driver.h>   // for rw_test(), ...
+#include <rw_any.h>      // for rw_any_t
+#include <rw_cmdopt.h>   // for rw_enabled()
+#include <rw_driver.h>   // for rw_test(), ...
 
 /**************************************************************************/
 

Modified: stdcxx/branches/4.3.x/tests/support/18.numeric.special.float.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/support/18.numeric.special.float.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/support/18.numeric.special.float.cpp (original)
+++ stdcxx/branches/4.3.x/tests/support/18.numeric.special.float.cpp Fri Jun  6 19:24:19 2008
@@ -51,7 +51,7 @@
 #  include <ieeefp.h>   // for fpclass, isnan
 #endif   // _RWSTD_NO_IEEEFP_H
 
-#include <driver.h>
+#include <rw_driver.h>
 
 // use FLT_ROUNDS if available, otherwise (e.g., when <ieeefp.h> must
 // be #included to bring the macro in), fall back on our own macro

Modified: stdcxx/branches/4.3.x/tests/support/18.numeric.special.int.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/support/18.numeric.special.int.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/support/18.numeric.special.int.cpp (original)
+++ stdcxx/branches/4.3.x/tests/support/18.numeric.special.int.cpp Fri Jun  6 19:24:19 2008
@@ -31,7 +31,7 @@
 #include <climits>   // for {CHAR,SHRT,INT,LONG}_{MIN,MAX}, etc.
 #include <cstdio>    // for sprintf()
 
-#include <driver.h>
+#include <rw_driver.h>
 
 
 template <class T> 

Modified: stdcxx/branches/4.3.x/tests/support/18.setjmp.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/support/18.setjmp.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/support/18.setjmp.cpp (original)
+++ stdcxx/branches/4.3.x/tests/support/18.setjmp.cpp Fri Jun  6 19:24:19 2008
@@ -27,7 +27,8 @@
  **************************************************************************/
 
 #include <setjmp.h>
-#include <driver.h>
+
+#include <rw_driver.h>
 
 /**************************************************************************/
 

Modified: stdcxx/branches/4.3.x/tests/support/18.support.dynamic.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/support/18.support.dynamic.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/support/18.support.dynamic.cpp (original)
+++ stdcxx/branches/4.3.x/tests/support/18.support.dynamic.cpp Fri Jun  6 19:24:19 2008
@@ -28,7 +28,8 @@
 
 #include <new>
 #include <memory>
-#include <driver.h>
+
+#include <rw_driver.h>
 
 #include <rw/_defs.h>
 #include <rw/_error.h>

Modified: stdcxx/branches/4.3.x/tests/support/18.support.rtti.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/support/18.support.rtti.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/support/18.support.rtti.cpp (original)
+++ stdcxx/branches/4.3.x/tests/support/18.support.rtti.cpp Fri Jun  6 19:24:19 2008
@@ -47,8 +47,9 @@
 
 
 #include <typeinfo>
-#include <driver.h>
-#include <valcmp.h>
+
+#include <rw_driver.h>
+#include <rw_valcmp.h>
 
 // polymorphic classes (10.3, p1) used in tests below
 struct B { virtual ~B () { } };
@@ -96,6 +97,13 @@
         _RWSTD_UNUSED (p_name);
     }
 
+#if defined (__IBMCPP__) && !defined (__RTTI_TYPE_INFO__)
+
+    rw_warn (0, 0, __LINE__,
+             "not testing type_info; rtti is disabled");
+
+#else   // !__IBMCPP__ || __RTTI_TYPE_INFO__
+
     if (1) {
         // exercise 18.5.1, class type_info functionality
         D1 d1;
@@ -178,6 +186,8 @@
                    d1_name, d2_name);
     }
 
+#endif   // !__IBMCPP__ || __RTTI_TYPE_INFO__
+
     if (1) {
         // exercise 18.5.2, class bad_cast interface
 

Modified: stdcxx/branches/4.3.x/tests/support/atomic_add.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/support/atomic_add.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/support/atomic_add.cpp (original)
+++ stdcxx/branches/4.3.x/tests/support/atomic_add.cpp Fri Jun  6 19:24:19 2008
@@ -32,9 +32,9 @@
 
 #include <rw/_mutex.h>
 
-#include <any.h>
-#include <cmdopt.h>
-#include <driver.h>
+#include <rw_any.h>
+#include <rw_cmdopt.h>
+#include <rw_driver.h>
 #include <rw_thread.h>   // for rw_thread_create()
 
 /**************************************************************************/

Modified: stdcxx/branches/4.3.x/tests/support/atomic_xchg.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/support/atomic_xchg.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/support/atomic_xchg.cpp (original)
+++ stdcxx/branches/4.3.x/tests/support/atomic_xchg.cpp Fri Jun  6 19:24:19 2008
@@ -32,9 +32,9 @@
 
 #include <rw/_mutex.h>
 
-#include <any.h>
-#include <cmdopt.h>
-#include <driver.h>
+#include <rw_any.h>
+#include <rw_cmdopt.h>
+#include <rw_driver.h>
 #include <rw_thread.h>   // for rw_thread_create()
 
 /**************************************************************************/

Modified: stdcxx/branches/4.3.x/tests/utilities/20.auto.ptr.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/utilities/20.auto.ptr.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/utilities/20.auto.ptr.cpp (original)
+++ stdcxx/branches/4.3.x/tests/utilities/20.auto.ptr.cpp Fri Jun  6 19:24:19 2008
@@ -88,8 +88,8 @@
 
 /**************************************************************************/
 
-#include <cmdopt.h>   // for rw_enabled()
-#include <driver.h>   // for rw_assert(), rw_test(), ...
+#include <rw_cmdopt.h>   // for rw_enabled()
+#include <rw_driver.h>   // for rw_assert(), rw_test(), ...
 
 /**************************************************************************/
 

Modified: stdcxx/branches/4.3.x/tests/utilities/20.function.objects.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/utilities/20.function.objects.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/utilities/20.function.objects.cpp (original)
+++ stdcxx/branches/4.3.x/tests/utilities/20.function.objects.cpp Fri Jun  6 19:24:19 2008
@@ -27,7 +27,8 @@
  **************************************************************************/
 
 #include <functional>
-#include <driver.h>
+
+#include <rw_driver.h>
 
 #if defined (__HP_aCC) && _RWSTD_HP_aCC_MAJOR < 6
 

Modified: stdcxx/branches/4.3.x/tests/utilities/20.meta.help.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/utilities/20.meta.help.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/utilities/20.meta.help.cpp (original)
+++ stdcxx/branches/4.3.x/tests/utilities/20.meta.help.cpp Fri Jun  6 19:24:19 2008
@@ -29,7 +29,7 @@
 
 #include <type_traits>
 
-#include <driver.h>
+#include <rw_driver.h>
 
 // compile out all test code if extensions disabled
 #ifndef _RWSTD_NO_EXT_CXX_0X

Modified: stdcxx/branches/4.3.x/tests/utilities/20.operators.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/utilities/20.operators.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/utilities/20.operators.cpp (original)
+++ stdcxx/branches/4.3.x/tests/utilities/20.operators.cpp Fri Jun  6 19:24:19 2008
@@ -58,7 +58,7 @@
 #include <utility>
 #include <cstddef>  // for std::size_t
 
-#include <driver.h>
+#include <rw_driver.h>
 
 /**************************************************************************/
 
@@ -169,7 +169,7 @@
 template <class T>
 struct RandomNumberGenerator
 {
-    T operator() (int) const {
+    T operator() (T) const {
         return T ();
     }
 };
@@ -397,7 +397,7 @@
 
     typedef RandomAccessIterator I;
 
-    RandomNumberGenerator<T> rndgen;
+    RandomNumberGenerator<typename I::difference_type> rndgen;
 
     std::random_shuffle (I (), I ());
     std::random_shuffle (I (), I (), rndgen);

Modified: stdcxx/branches/4.3.x/tests/utilities/20.pairs.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/utilities/20.pairs.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/utilities/20.pairs.cpp (original)
+++ stdcxx/branches/4.3.x/tests/utilities/20.pairs.cpp Fri Jun  6 19:24:19 2008
@@ -28,9 +28,9 @@
 
 #include <utility>
 
-#include <alg_test.h>
+#include <rw_alg_test.h>
 #include <rw_value.h>   // for UserClass
-#include <driver.h>
+#include <rw_driver.h>
 
 /**************************************************************************/
 

Modified: stdcxx/branches/4.3.x/tests/utilities/20.smartptr.shared.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/utilities/20.smartptr.shared.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/utilities/20.smartptr.shared.cpp (original)
+++ stdcxx/branches/4.3.x/tests/utilities/20.smartptr.shared.cpp Fri Jun  6 19:24:19 2008
@@ -27,7 +27,7 @@
  * 
  **************************************************************************/
 
-#include <driver.h>
+#include <rw_driver.h>
 
 // compile out all test code if extensions disabled
 #ifndef _RWSTD_NO_EXT_CXX_0X

Modified: stdcxx/branches/4.3.x/tests/utilities/20.smartptr.weak.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/utilities/20.smartptr.weak.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/utilities/20.smartptr.weak.cpp (original)
+++ stdcxx/branches/4.3.x/tests/utilities/20.smartptr.weak.cpp Fri Jun  6 19:24:19 2008
@@ -27,7 +27,7 @@
  * 
  **************************************************************************/
 
-#include <driver.h>
+#include <rw_driver.h>
 
 // compile out all test code if extensions disabled
 #ifndef _RWSTD_NO_EXT_CXX_0X

Modified: stdcxx/branches/4.3.x/tests/utilities/20.specialized.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/utilities/20.specialized.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/utilities/20.specialized.cpp (original)
+++ stdcxx/branches/4.3.x/tests/utilities/20.specialized.cpp Fri Jun  6 19:24:19 2008
@@ -27,8 +27,9 @@
  **************************************************************************/
 
 #include <memory>
-#include <alg_test.h>
-#include <driver.h>
+
+#include <rw_alg_test.h>
+#include <rw_driver.h>
 
 /**************************************************************************/
 

Modified: stdcxx/branches/4.3.x/tests/utilities/20.temp.buffer.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/utilities/20.temp.buffer.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/utilities/20.temp.buffer.cpp (original)
+++ stdcxx/branches/4.3.x/tests/utilities/20.temp.buffer.cpp Fri Jun  6 19:24:19 2008
@@ -40,7 +40,7 @@
 
 #include <rw_new.h>
 #include <rw_printf.h>
-#include <driver.h>
+#include <rw_driver.h>
 
 #ifndef _RWSTD_NO_SETRLIMIT
   // #undef works around SunPro bug #568

Modified: stdcxx/branches/4.3.x/tests/utilities/20.temp.buffer.mt.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/utilities/20.temp.buffer.mt.cpp?rev=664244&r1=664243&r2=664244&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/utilities/20.temp.buffer.mt.cpp (original)
+++ stdcxx/branches/4.3.x/tests/utilities/20.temp.buffer.mt.cpp Fri Jun  6 19:24:19 2008
@@ -36,7 +36,7 @@
 #include <cstdio>    // for printf()
 #include <cstring>   // for memset()
 
-#include <driver.h>      // for rw_test(), ...
+#include <rw_driver.h>   // for rw_test(), ...
 #include <rw_thread.h>   // for rw_thread_create(), ...
 
 /**************************************************************************/