From e5123cf2f4a44a5238fe78881911d75c3da035e7 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 23 Sep 2014 17:42:36 +0000 Subject: [PATCH] disable the unit test under wxUniv too. wxGrid implementation may has bug that work with simulator git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77827 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/controls/gridtest.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/controls/gridtest.cpp b/tests/controls/gridtest.cpp index 0cc2e931c9..3219e9ea16 100644 --- a/tests/controls/gridtest.cpp +++ b/tests/controls/gridtest.cpp @@ -334,7 +334,10 @@ void GridTestCase::SortClick() void GridTestCase::Size() { // TODO on OSX resizing interactively works, but not automated -#if wxUSE_UIACTIONSIMULATOR && !defined(__WXGTK__) && !defined(__WXOSX__) + // Grid could not pass the test under GTK, OSX, and Universal. + // So there may has bug in Grid implementation +#if wxUSE_UIACTIONSIMULATOR && !defined(__WXGTK__) && !defined(__WXOSX__) \ +&& !defined(__WXUNIVERSAL__) EventCounter colsize(m_grid, wxEVT_GRID_COL_SIZE); EventCounter rowsize(m_grid, wxEVT_GRID_ROW_SIZE);