mirror of https://github.com/qt/qtdatavis3d.git
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:
parent
ae915cba96
commit
23e093c7bb
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue