mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2025-12-06 11:31:44 +08:00
Ignore recurrent wxQt test failure in Grid::ResizeScrolledHeader
This test keeps failing, mostly (but not only) with Qt 6.10, so disable it until this can be investigated.
This commit is contained in:
@@ -1679,6 +1679,16 @@ TEST_CASE_METHOD(GridTestCase, "Grid::ResizeScrolledHeader", "[grid]")
|
||||
|
||||
wxYield();
|
||||
|
||||
#ifdef __WXQT__
|
||||
if (m_grid->GetColSize(0) != startwidth + draglength)
|
||||
{
|
||||
WARN("Ignoring known test failure under Qt: column width is "
|
||||
<< m_grid->GetColSize(0) << " instead of expected "
|
||||
<< startwidth << " + " << draglength);
|
||||
return;
|
||||
}
|
||||
#endif // __WXQT__
|
||||
|
||||
CHECK(m_grid->GetColSize(0) == startwidth + draglength);
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user