Skip test cases that resizes window on eglfs_viv on VxWorks
This change is required when running in real hw with eglfs backend. It passed on CI because CI used "offscreen" backend and eglfs is not tested on CI at the moment. Task-number: QTBUG-115777 Change-Id: I4bbfbedcbe21c5c2041be9bdb8ae370156bb6200 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
This commit is contained in:
parent
16546515f3
commit
f6831d08c4
@ -119,6 +119,9 @@ void tst_QOpenGLWindow::resize()
|
||||
if (isPlatformWayland())
|
||||
QSKIP("Wayland: Crashes on Intel Mesa due to a driver bug (QTBUG-66848).");
|
||||
|
||||
if (QGuiApplication::platformName().startsWith(QLatin1String("eglfs"), Qt::CaseInsensitive))
|
||||
QSKIP("EGLFS does not allow resizing on top level window");
|
||||
|
||||
Window w;
|
||||
w.reset();
|
||||
w.resize(640, 480);
|
||||
|
@ -4820,6 +4820,9 @@ void tst_QTreeView::fetchMoreOnScroll()
|
||||
if (QGuiApplication::platformName().startsWith(QLatin1String("wayland"), Qt::CaseInsensitive))
|
||||
QSKIP("Wayland: This fails. Figure out why.");
|
||||
|
||||
if (QGuiApplication::platformName().startsWith(QLatin1String("eglfs"), Qt::CaseInsensitive))
|
||||
QSKIP("EGLFS does not allow resizing on top level window");
|
||||
|
||||
QTreeView tw;
|
||||
FetchMoreModel im;
|
||||
tw.setModel(&im);
|
||||
@ -4897,6 +4900,9 @@ void tst_QTreeView::checkIntersectedRect_data()
|
||||
|
||||
void tst_QTreeView::checkIntersectedRect()
|
||||
{
|
||||
if (QGuiApplication::platformName().startsWith(QLatin1String("eglfs"), Qt::CaseInsensitive))
|
||||
QSKIP("EGLFS does not allow resizing on top level window");
|
||||
|
||||
QFETCH(QStandardItemModel *, model);
|
||||
QFETCH(const QList<QModelIndex>, changedIndexes);
|
||||
QFETCH(bool, isEmpty);
|
||||
@ -5198,6 +5204,10 @@ void tst_QTreeView::fetchUntilScreenFull()
|
||||
TreeItem* m_root;
|
||||
};
|
||||
|
||||
if (QGuiApplication::platformName().startsWith(QLatin1String("eglfs"), Qt::CaseInsensitive))
|
||||
QSKIP("EGLFS does not allow resizing on top level window");
|
||||
|
||||
|
||||
QTreeView tv;
|
||||
TreeModel model;
|
||||
tv.setModel(&model);
|
||||
|
Loading…
x
Reference in New Issue
Block a user