X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3e5f6c1c4f79af395e094be3fa2957394e2e5825..9c112555198f51fcec71106530cddba95a17f3dc:/tests/streams/bstream.cpp diff --git a/tests/streams/bstream.cpp b/tests/streams/bstream.cpp index d03458ef28..5b1e307e45 100644 --- a/tests/streams/bstream.cpp +++ b/tests/streams/bstream.cpp @@ -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; @@ -55,8 +50,14 @@ Test *StreamCase::suite() 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); + extern CppUnit::Test* GetlargeFileSuite(); + Test *lfs = GetlargeFileSuite(); + if (lfs) + suite->addTest(lfs); + /* ** Add more stream subtests here */