Temporarily disable test that takes a long time to run, needs moving to a named registry

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35904 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2005-10-15 19:04:29 +00:00
parent ea75e99e8f
commit 6c1a7bc483

View File

@@ -345,6 +345,9 @@ void URITestCase::URLCompat()
CPPUNIT_ASSERT( test.GetScheme() == wxT("file") ); CPPUNIT_ASSERT( test.GetScheme() == wxT("file") );
CPPUNIT_ASSERT( test.GetPath() == wxT("%22myf%22ile.txt") ); CPPUNIT_ASSERT( test.GetPath() == wxT("%22myf%22ile.txt") );
// these could be put under a named registry since they take some
// time to complete
#if 0
// Test problem urls (reported not to work some time ago by a user...) // Test problem urls (reported not to work some time ago by a user...)
for ( size_t i = 0; i < WXSIZEOF(pszProblemUrls); ++i ) for ( size_t i = 0; i < WXSIZEOF(pszProblemUrls); ++i )
{ {
@@ -370,6 +373,7 @@ void URITestCase::URLCompat()
delete is; delete is;
} }
#endif
} }
#if wxUSE_PROTOCOL_HTTP #if wxUSE_PROTOCOL_HTTP