From 3508e3a6237c6ba782728abe7136a38afe65f1af Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 23 Nov 2017 00:10:07 +0100 Subject: [PATCH] Disable test for clicking URLs under AppVeyor It fails, for whatever reason, even though it passes locally and other tests using wxUIActionSimulator work under AppVeyor too. --- tests/controls/textctrltest.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/controls/textctrltest.cpp b/tests/controls/textctrltest.cpp index 3abcbfe868..7264bc5d82 100644 --- a/tests/controls/textctrltest.cpp +++ b/tests/controls/textctrltest.cpp @@ -376,6 +376,12 @@ void TextCtrlTestCase::ProcessEnter() void TextCtrlTestCase::Url() { #if wxUSE_UIACTIONSIMULATOR && defined(__WXMSW__) + // For some unfathomable reason, this test consistently fails when run in + // AppVeyor CI environment, even though it passes locally, so skip it + // there. + if ( wxGetEnv("APPVEYOR", NULL) ) + return; + delete m_text; CreateText(wxTE_RICH | wxTE_AUTO_URL);