From 0b8a85ad649c6747b8284c0782f320558f577602 Mon Sep 17 00:00:00 2001 From: taler21 <99262969+taler21@users.noreply.github.com> Date: Wed, 21 Feb 2024 08:51:09 +0100 Subject: [PATCH] Enable MultiSelect() unit test for generic wxListCtrl This test just doesn't want to work when run on GitHub CI under wxGTK2 even though it works perfectly locally. So enable the test at least for all other ports. --- tests/controls/listbasetest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/controls/listbasetest.cpp b/tests/controls/listbasetest.cpp index 5efce9ac79..240ef3e676 100644 --- a/tests/controls/listbasetest.cpp +++ b/tests/controls/listbasetest.cpp @@ -179,12 +179,12 @@ void ListBaseTestCase::MultiSelect() { #if wxUSE_UIACTIONSIMULATOR -#ifndef __WXMSW__ - // FIXME: This test fails on Travis CI although works fine on +#if defined(__WXGTK__) && !defined(__WXGTK3__) + // FIXME: This test fails on GitHub CI under wxGTK2 although works fine on // development machine, no idea why though! if ( IsAutomaticTest() ) return; -#endif // !__WXMSW__ +#endif // wxGTK2 wxListCtrl* const list = GetList();