summaryrefslogtreecommitdiff
path: root/tests/auto/qx11info/tst_qx11info.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qx11info/tst_qx11info.cpp')
-rw-r--r--tests/auto/qx11info/tst_qx11info.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/qx11info/tst_qx11info.cpp b/tests/auto/qx11info/tst_qx11info.cpp
index b4207c1..36dd202 100644
--- a/tests/auto/qx11info/tst_qx11info.cpp
+++ b/tests/auto/qx11info/tst_qx11info.cpp
@@ -43,6 +43,7 @@ private slots:
void isPlatformX11();
void appTime();
void peeker();
+ void isCompositingManagerRunning();
};
void tst_QX11Info::staticFunctionsBeforeQApplication()
@@ -374,6 +375,17 @@ void tst_QX11Info::peeker()
QVERIFY(QTest::qWaitForWindowExposed(&test));
}
+void tst_QX11Info::isCompositingManagerRunning()
+{
+ int argc = 0;
+ QGuiApplication app(argc, 0);
+ const bool b = QX11Info::isCompositingManagerRunning();
+ Q_UNUSED(b);
+ const bool b2 = QX11Info::isCompositingManagerRunning(0);
+ Q_UNUSED(b2);
+ // just check that it didn't crash (QTBUG-91913)
+}
+
QTEST_APPLESS_MAIN(tst_QX11Info)
#include "tst_qx11info.moc"