summaryrefslogtreecommitdiffstats
path: root/tests/auto/gui/qopenglconfig
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-09-24 09:25:25 +0200
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-09-24 07:49:30 +0000
commit7183d08095f4598fc0f7702608bd726986bf1307 (patch)
tree0511abe7b7ef3f520e60ada656f0dcb9a2650057 /tests/auto/gui/qopenglconfig
parent7a8da57a637f7a0b94199bb0e19f97a53958a8f0 (diff)
Tests: Harmonize code checking on platform name.
Use case insensitive comparison and static invocation of QGuiApplication::platformName(). Change-Id: I8c197c7b4f0669f71c019fbcee09a0f03dfab399 Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@theqtcompany.com>
Diffstat (limited to 'tests/auto/gui/qopenglconfig')
-rw-r--r--tests/auto/gui/qopenglconfig/tst_qopenglconfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/gui/qopenglconfig/tst_qopenglconfig.cpp b/tests/auto/gui/qopenglconfig/tst_qopenglconfig.cpp
index 48a15641b2..1cb7972cc6 100644
--- a/tests/auto/gui/qopenglconfig/tst_qopenglconfig.cpp
+++ b/tests/auto/gui/qopenglconfig/tst_qopenglconfig.cpp
@@ -288,7 +288,7 @@ void tst_QOpenGlConfig::testBugList()
void tst_QOpenGlConfig::testDefaultWindowsBlacklist()
{
- if (qGuiApp->platformName() != QStringLiteral("windows"))
+ if (QGuiApplication::platformName().compare(QLatin1String("windows"), Qt::CaseInsensitive))
QSKIP("Only applicable to Windows");
QFile f(QStringLiteral(":/qt-project.org/windows/openglblacklists/default.json"));