X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d929eddf3a3dbb04f37624d255f4e24e07595ca1..e5354813181461c154044d52a464b29fa1aefaf8:/tests/controls/gridtest.cpp diff --git a/tests/controls/gridtest.cpp b/tests/controls/gridtest.cpp index 8012b51429..7c2311a8fc 100644 --- a/tests/controls/gridtest.cpp +++ b/tests/controls/gridtest.cpp @@ -153,7 +153,9 @@ void GridTestCase::tearDown() void GridTestCase::CellEdit() { -#if wxUSE_UIACTIONSIMULATOR + // TODO on OSX when running the grid test suite solo this works + // but not when running it together with other tests +#if wxUSE_UIACTIONSIMULATOR && !defined(__WXOSX__) EventCounter changing(m_grid, wxEVT_GRID_CELL_CHANGING); EventCounter changed(m_grid, wxEVT_GRID_CELL_CHANGED); EventCounter created(m_grid, wxEVT_GRID_EDITOR_CREATED); @@ -332,7 +334,8 @@ void GridTestCase::SortClick() void GridTestCase::Size() { -#if wxUSE_UIACTIONSIMULATOR && !defined(__WXGTK__) + // TODO on OSX resizing interactively works, but not automated +#if wxUSE_UIACTIONSIMULATOR && !defined(__WXGTK__) && !defined(__WXOSX__) EventCounter colsize(m_grid, wxEVT_GRID_COL_SIZE); EventCounter rowsize(m_grid, wxEVT_GRID_ROW_SIZE);