X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e3778b4d9c7eebc39f496a9dd055638e06fb9140..339c6c92a276ac6b04dcb5deffaea7ccbd2ee109:/tests/misc/misctests.cpp?ds=inline diff --git a/tests/misc/misctests.cpp b/tests/misc/misctests.cpp index fed7b1e4ff..54fd941def 100644 --- a/tests/misc/misctests.cpp +++ b/tests/misc/misctests.cpp @@ -3,7 +3,6 @@ // Purpose: test miscellaneous stuff // Author: Peter Most, Vadim Zeitlin // Created: 2008-07-10 -// RCS-ID: $Id$ // Copyright: (c) 2008 Peter Most // (c) 2009 Vadim Zeitlin /////////////////////////////////////////////////////////////////////////////// @@ -115,17 +114,21 @@ bool IsNull(void *p) void MiscTestCase::StaticCast() { +#if wxUSE_TARSTREAM wxTarEntry tarEntry; CPPUNIT_ASSERT( wxStaticCast(&tarEntry, wxArchiveEntry) ); wxArchiveEntry *entry = &tarEntry; CPPUNIT_ASSERT( wxStaticCast(entry, wxTarEntry) ); +#if wxUSE_ZIPSTREAM wxZipEntry zipEntry; entry = &zipEntry; CPPUNIT_ASSERT( wxStaticCast(entry, wxZipEntry) ); + WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(&zipEntry, wxTarEntry)) ); +#endif // wxUSE_ZIPSTREAM WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(entry, wxTarEntry)) ); - WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(&zipEntry, wxTarEntry)) ); +#endif // wxUSE_TARSTREAM }