]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/streams/bstream.cpp
remove extraneous returns
[wxWidgets.git] / tests / streams / bstream.cpp
index d03458ef28e3d90b5c758f92068e1817b64228c1..82cbc34d6c6376e8600094e211f27a33671bb6b7 100644 (file)
@@ -7,13 +7,9 @@
 // Licence:     wxWidgets licence
 ///////////////////////////////////////////////////////////////////////////////
 
-#if defined(__GNUG__) && !defined(__APPLE__)
-    #pragma implementation
-    #pragma interface
-#endif
-
 // For compilers that support precompilation, includes "wx/wx.h".
-#include "wx/wxprec.h"
+// and "wx/cppunit.h"
+#include "testprec.h"
 
 #ifdef __BORLANDC__
     #pragma hdrstop
@@ -24,7 +20,6 @@
     #include "wx/wx.h"
 #endif
 
-#include "wx/cppunit.h"
 #include "bstream.h"
 
 using CppUnit::TestSuite;
@@ -51,11 +46,22 @@ Test *StreamCase::suite()
      * Register all sub stream test suites.
      */
 
+#if 0
     STREAM_REGISTER_SUB_SUITE(memStream);
     STREAM_REGISTER_SUB_SUITE(strStream);
     STREAM_REGISTER_SUB_SUITE(fileStream);
     STREAM_REGISTER_SUB_SUITE(ffileStream);
+    STREAM_REGISTER_SUB_SUITE(tempStream);
     STREAM_REGISTER_SUB_SUITE(zlibStream);
+    STREAM_REGISTER_SUB_SUITE(backStream);
+
+    extern CppUnit::Test* GetlargeFileSuite();
+    Test *lfs = GetlargeFileSuite();
+    if (lfs)
+        suite->addTest(lfs);
+#endif
+
+    STREAM_REGISTER_SUB_SUITE(socketStream);
 
     /*
     ** Add more stream subtests here