Android: Skip tst_examples::sgexamples until it uses resources properly

The tests tst_examples::sgexamples is expecting the examples to be
present on local filesystem, some changes are needed to have this work
on Android.

Pick-to: 6.2 6.3
Task-number: QTBUG-88846
Task-number: QTBUG-103597
Change-Id: Ida1cb185204626908f5f13da8cfec3a55740d22b
Reviewed-by: Andreas Buhr <andreas.buhr@qt.io>
This commit is contained in:
Assam Boudjelthia 2022-05-18 19:13:03 +03:00
parent 05ac68c989
commit dd1ab281db
1 changed files with 3 additions and 0 deletions

View File

@ -250,6 +250,9 @@ void tst_examples::sgexamples_data()
void tst_examples::sgexamples()
{
#ifdef Q_OS_ANDROID
QSKIP("The test needs changes to package examples files to the Android package (QTBUG-103597)");
#endif
QFETCH(QString, file);
QQuickWindow window;
window.setPersistentGraphics(true);