Skip URL test if it fails when running on AppVeyor

Failing it is not useful, this results in the CI failure when in 99% of
the cases the transient network problem which resulted in this test
failure has nothing to do with the changes being tested.
This commit is contained in:
Vadim Zeitlin
2020-12-04 19:29:59 +01:00
parent 24a982e6e2
commit a7dfedf602

View File

@@ -75,11 +75,11 @@ void URLTestCase::GetInputStream()
wxScopedPtr<wxInputStream> in_stream(url.GetInputStream());
if ( !in_stream && IsAutomaticTest() )
{
// Sometimes the connection fails during CI runs, try to connect once
// again if this happens in the hope it was just a transient error.
wxSleep(3);
WARN("Connection to www.wxwidgets.org failed, retrying...");
in_stream.reset(url.GetInputStream());
// Sometimes the connection fails during CI runs, don't consider this
// as a fatal error because it happens from time to time and there is
// nothing we can do about it.
WARN("Connection to www.wxwidgets.org failed, skipping the test.");
return;
}
CPPUNIT_ASSERT(in_stream);