summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSami Nurmenniemi <sami.nurmenniemi@qt.io>2017-04-07 09:42:22 +0300
committerSami Nurmenniemi <sami.nurmenniemi@qt.io>2017-04-12 08:36:39 +0000
commit6e649f9714db58e97b68a2fe9838c71aca2ee756 (patch)
treeef2f3762037594798e5e27b53d883bbe279e4e27
parenta89033743316c3f0a5b81e2634bf16958ec84f03 (diff)
Skip testing of QOpenGlConfig on platforms that don't support it
Task-number: QTBUG-59966 Change-Id: If74657d0a0133c67f57bf92ae96d2d868d523f0e Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
-rw-r--r--tests/auto/gui/qopenglconfig/tst_qopenglconfig.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/gui/qopenglconfig/tst_qopenglconfig.cpp b/tests/auto/gui/qopenglconfig/tst_qopenglconfig.cpp
index 39f7beca6f..f8dfdbd3b0 100644
--- a/tests/auto/gui/qopenglconfig/tst_qopenglconfig.cpp
+++ b/tests/auto/gui/qopenglconfig/tst_qopenglconfig.cpp
@@ -100,6 +100,7 @@ class tst_QOpenGlConfig : public QObject
Q_OBJECT
private slots:
+ void initTestCase();
void testConfiguration();
void testGlConfiguration();
void testBugList();
@@ -162,6 +163,12 @@ static void dumpConfiguration(QTextStream &str)
}
}
+void tst_QOpenGlConfig::initTestCase()
+{
+ if (!QGuiApplicationPrivate::platformIntegration()->hasCapability(QPlatformIntegration::OpenGL))
+ QSKIP("OpenGL is not supported on this platform.");
+}
+
void tst_QOpenGlConfig::testConfiguration()
{
QString result;