]> git.saurik.com Git - wxWidgets.git/commitdiff
disable test using network by default as it's not available on some of buildbot machi...
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 30 May 2008 23:38:56 +0000 (23:38 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 30 May 2008 23:38:56 +0000 (23:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53866 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/uris/uris.cpp

index 8ea7438debddef925e027119ba9f8d56ac7d1ea7..65dcdcf88590125cade6d649676bca850e3bf91e 100644 (file)
 #include "wx/url.h"
 
 // Test wxURL & wxURI compat?
-#define TEST_URL ( 1 && wxUSE_URL )
+#define TEST_URL wxUSE_URL
+
+// Define this as 1 to test network connections, this is disabled by default as
+// some machines running automatic builds don't allow outgoing connections and
+// so the tests fail
+#define TEST_NETWORK 0
 
 // ----------------------------------------------------------------------------
 // test class
@@ -338,9 +343,11 @@ void URITestCase::URLCompat()
 
     CPPUNIT_ASSERT(url.GetError() == wxURL_NOERR);
 
+#if TEST_NETWORK
     wxInputStream* pInput = url.GetInputStream();
 
     CPPUNIT_ASSERT( pInput != NULL );
+#endif
 
     CPPUNIT_ASSERT( url == wxURL(wxT("http://user:password@wxwidgets.org")) );