]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/uris/uris.cpp
reverted DEBUG_INFO change
[wxWidgets.git] / tests / uris / uris.cpp
index 3152be43aa744f1a6c2d9bb50d7a2aadae538331..959c3e2928f73716078872290340aa9f5a09e55b 100644 (file)
@@ -50,7 +50,9 @@ private:
         CPPUNIT_TEST( Comparison );
 #if TEST_URL
         CPPUNIT_TEST( URLCompat );
+#if wxUSE_PROTOCOL_HTTP
         CPPUNIT_TEST( URLProxy  );
+#endif
 #endif
     CPPUNIT_TEST_SUITE_END();
 
@@ -318,10 +320,12 @@ void URITestCase::URLCompat()
     CPPUNIT_ASSERT( test.GetPath() == wxT("%22myf%22ile.txt") );
 }
 
+#if wxUSE_PROTOCOL_HTTP
 void URITestCase::URLProxy()
 {
     wxURL url(wxT("http://www.asite.com/index.html"));
     url.SetProxy(wxT("pserv:3122"));
 }
+#endif // wxUSE_PROTOCOL_HTTP
 #endif