tst_QMenu: skip part of menuSize_Scrolling test
Test fails on minimal and offscreen platforms. Task-number: QTBUG-73522 Task-number: QTQAINFRA-2630 Change-Id: I6260454be35a8bbac1ab683d89fb7b262d3b69ab Reviewed-by: Sami Nurmenniemi <sami.nurmenniemi@qt.io> Reviewed-by: Ville Voutilainen <ville.voutilainen@qt.io>
This commit is contained in:
parent
1b5a17632e
commit
7472415f3f
@ -1579,6 +1579,13 @@ void tst_QMenu::menuSize_Scrolling()
|
||||
#ifdef Q_OS_WINRT
|
||||
QEXPECT_FAIL("", "Broken on WinRT - QTBUG-68297", Abort);
|
||||
#endif
|
||||
if (!QGuiApplication::platformName().compare(QLatin1String("minimal"), Qt::CaseInsensitive)
|
||||
|| !QGuiApplication::platformName().compare(QLatin1String("offscreen"), Qt::CaseInsensitive)) {
|
||||
QWARN("Skipping test on minimal/offscreen platforms - QTBUG-73522");
|
||||
QMenu::showEvent(e);
|
||||
return;
|
||||
}
|
||||
|
||||
QCOMPARE( s.width(), lastItem.right() + fw + hmargin + rightMargin + 1);
|
||||
QMenu::showEvent(e);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user