Remove redundant wxUSE_WXVSNPRINTF checks from the unit test.

The entire VsnprintfTestCase is only used when using our own
wxUSE_WXVSNPRINTF so remove the redundant tests for it inside the enclosing #if.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2010-10-03 17:15:04 +00:00
parent 6acd08bc95
commit 89ff7e9fb1

View File

@@ -139,9 +139,7 @@ private:
#endif
CPPUNIT_TEST( BigToSmallBuffer );
#if wxUSE_WXVSNPRINTF
CPPUNIT_TEST( WrongFormatStrings );
#endif // wxUSE_WXVSNPRINTF
CPPUNIT_TEST( Miscellaneous );
CPPUNIT_TEST( GlibcMisc1 );
CPPUNIT_TEST( GlibcMisc2 );
@@ -168,9 +166,7 @@ private:
void DoBigToSmallBuffer(T *buffer, int size);
void BigToSmallBuffer();
#if wxUSE_WXVSNPRINTF
void WrongFormatStrings();
#endif // wxUSE_WXVSNPRINTF
// compares the expectedString and the result of wxVsnprintf() char by char
// for all its lenght (not only for first expectedLen chars) and also
@@ -424,12 +420,6 @@ void VsnprintfTestCase::LongLong()
}
#endif
// this test is only for our own implementation, the system implementation
// doesn't always give errors for invalid format strings (e.g. glibc doesn't)
// and as it's not required too (the behaviour is "undefined" according to the
// spec), there is really no sense in testing for it
#if wxUSE_WXVSNPRINTF
void VsnprintfTestCase::WrongFormatStrings()
{
// test how wxVsnprintf() behaves with wrong format string:
@@ -456,8 +446,6 @@ void VsnprintfTestCase::WrongFormatStrings()
CPPUNIT_ASSERT_EQUAL(-1, r);
}
#endif // wxUSE_WXVSNPRINTF
// BigToSmallBuffer() test case helper:
template<typename T>
void VsnprintfTestCase::DoBigToSmallBuffer(T *buffer, int size)