Skip test which resizes window with EGLFS

This test is resizing window, which is not supported in EGLFS,
so it needs to be skipped.

Task-number: QTBUG-115777
Change-Id: Ie136f6565b4d466bc62c4e2ebe2337488b5003b4
Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
(cherry picked from commit bb07c4a37be383f27a2473400fbe3cda730eebd3)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Tomasz Kozłowski 2023-12-13 14:56:15 +01:00 committed by Qt Cherry-pick Bot
parent eab6de2eec
commit 60f394d357

View File

@ -2198,6 +2198,9 @@ void tst_QHeaderView::preserveHiddenSectionWidth()
void tst_QHeaderView::invisibleStretchLastSection()
{
if (QGuiApplication::platformName().startsWith(QLatin1String("eglfs"), Qt::CaseInsensitive))
QSKIP("EGLFS does not allow resizing on top window");
int count = 6;
QStandardItemModel model(1, count);
QHeaderView view(Qt::Horizontal);