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.
This commit is contained in:
taler21 2024-02-21 08:51:09 +01:00
parent d091a44adb
commit 0b8a85ad64

View file

@ -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();