Fix a qt-testrunner.py QEMU failure

Fixes: QTBUG-102735
Change-Id: I7e4941ffe6bec251957e6d3fe96e69cc797625b3
Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
This commit is contained in:
Tomi Korpipaa 2022-04-20 14:02:10 +03:00
parent ae915cba96
commit 23e093c7bb
1 changed files with 16 additions and 4 deletions

View File

@ -28,21 +28,33 @@
****************************************************************************/
#include <QtQuickTest/quicktest.h>
class tst_skiptest: public QObject
{
Q_OBJECT
private slots:
void skiptest() { QSKIP("This test will fail, skipping."); };
};
int main(int argc, char **argv)
{
if (!qEnvironmentVariableIsEmpty("QEMU_LD_PREFIX")) {
qWarning("This test will fail due to QEMU emulation shortcomings.");
return 0;
qWarning("This test would fail due to QEMU emulation shortcomings, so it will be skipped.");
tst_skiptest skip;
return QTest::qExec(&skip);
}
#ifdef Q_OS_QNX
if (qEnvironmentVariable("QTEST_ENVIRONMENT").split(' ').contains("ci") &&
qEnvironmentVariable("QT_QPA_PLATFORM").split(' ').contains("offscreen")
) {
qWarning("This test will fail on CI QNX QEMU without OpenGL support.");
return 0;
qWarning("This test would fail on CI QNX QEMU without OpenGL support, so it will be skipped.");
tst_skiptest skip;
return QTest::qExec(&skip);
}
#endif
qputenv("QSG_RHI_BACKEND", "opengl");
QTEST_SET_MAIN_SOURCE_PATH
return quick_test_main(argc, argv, "qmltest", QUICK_TEST_SOURCE_DIR);
}
#include "tst_qmltest.moc"