From d1d96a3cdd85c471f52c8a48c7e4441eb252f20f Mon Sep 17 00:00:00 2001 From: Assam Boudjelthia Date: Mon, 14 Mar 2022 15:50:05 +0200 Subject: [PATCH] Android: skip crashing tests tst_QOpenglWidget::clearAndResizeAndGrab() Skip the crashing case temporarily to allow other tests to run while finding a fix. Pick-to: 6.2 6.3 Task-number: QTBUG-100470 Task-number: QTBUG-102043 Change-Id: I8b16f95e5c66b95cc9959494b5317d39d58194e6 Reviewed-by: Ivan Solovev --- tests/auto/widgets/widgets/qopenglwidget/tst_qopenglwidget.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/auto/widgets/widgets/qopenglwidget/tst_qopenglwidget.cpp b/tests/auto/widgets/widgets/qopenglwidget/tst_qopenglwidget.cpp index 9e5023ed2ae..09750613c9e 100644 --- a/tests/auto/widgets/widgets/qopenglwidget/tst_qopenglwidget.cpp +++ b/tests/auto/widgets/widgets/qopenglwidget/tst_qopenglwidget.cpp @@ -156,6 +156,9 @@ void tst_QOpenGLWidget::clearAndGrab() void tst_QOpenGLWidget::clearAndResizeAndGrab() { +#ifdef Q_OS_ANDROID + QSKIP("Crashes on Android (QTBUG-102043)"); +#endif QScopedPointer w(new ClearWidget(0, 640, 480)); w->resize(640, 480); w->show();