disable the test declarations and not just the definitions if we don't have strtoll()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@54660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-07-16 03:02:19 +00:00
parent f5482726ac
commit 6169b1f960

View File

@@ -47,10 +47,10 @@ private:
CPPUNIT_TEST( Contains ); CPPUNIT_TEST( Contains );
CPPUNIT_TEST( ToLong ); CPPUNIT_TEST( ToLong );
CPPUNIT_TEST( ToULong ); CPPUNIT_TEST( ToULong );
#ifdef wxLongLong_t #ifdef wxHAS_STRTOLL
CPPUNIT_TEST( ToLongLong ); CPPUNIT_TEST( ToLongLong );
CPPUNIT_TEST( ToULongLong ); CPPUNIT_TEST( ToULongLong );
#endif // wxLongLong_t #endif // wxHAS_STRTOLL
CPPUNIT_TEST( ToDouble ); CPPUNIT_TEST( ToDouble );
CPPUNIT_TEST( WriteBuf ); CPPUNIT_TEST( WriteBuf );
CPPUNIT_TEST( CharStr ); CPPUNIT_TEST( CharStr );
@@ -71,10 +71,10 @@ private:
void Contains(); void Contains();
void ToLong(); void ToLong();
void ToULong(); void ToULong();
#ifdef wxLongLong_t #ifdef wxHAS_STRTOLL
void ToLongLong(); void ToLongLong();
void ToULongLong(); void ToULongLong();
#endif // wxLongLong_t #endif // wxHAS_STRTOLL
void ToDouble(); void ToDouble();
void WriteBuf(); void WriteBuf();
void CharStr(); void CharStr();