don't compile the test in the build configurations where it's not supported (trying to fix buildbot OS X build)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53856 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
2bdba43f02
commit
fc215b4140
@ -21,6 +21,8 @@
|
|||||||
#include "wx/string.h"
|
#include "wx/string.h"
|
||||||
#endif // WX_PRECOMP
|
#endif // WX_PRECOMP
|
||||||
|
|
||||||
|
#if wxUSE_STD_IOSTREAM
|
||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
#define ASSERT_OSTREAM_EQUAL(p, s) CPPUNIT_ASSERT_EQUAL(std::string(p), s.str())
|
#define ASSERT_OSTREAM_EQUAL(p, s) CPPUNIT_ASSERT_EQUAL(std::string(p), s.str())
|
||||||
@ -54,10 +56,11 @@ void StringIostreamTestCase::Out()
|
|||||||
s << wxString("hello");
|
s << wxString("hello");
|
||||||
ASSERT_OSTREAM_EQUAL("hello", s);
|
ASSERT_OSTREAM_EQUAL("hello", s);
|
||||||
|
|
||||||
#ifndef __MINGW32__
|
#if wxUSE_UNICODE && defined(HAVE_WOSTREAM)
|
||||||
std::wostringstream ws;
|
std::wostringstream ws;
|
||||||
ws << wxString("bye");
|
ws << wxString("bye");
|
||||||
ASSERT_WOSTREAM_EQUAL(L"bye", ws);
|
ASSERT_WOSTREAM_EQUAL(L"bye", ws);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif // wxUSE_STD_IOSTREAM
|
||||||
|
Loading…
Reference in New Issue
Block a user