aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2014-12-01 10:45:00 +0100
committerJani Heikkinen <jani.heikkinen@theqtcompany.com>2014-12-02 09:56:04 +0100
commit06fc202e81bfbf619ceebb9cef803270590f9e7f (patch)
treee521b72db0367e59db43327f7e2126671d8f1e1b /tests
parent64c9cbf3046ca62281aac284271a13f5340f8e21 (diff)
Skip tst_qquickwindow::headless() when using ANGLE/Windows.
The test crashes frequently. Task-number: QTBUG-42967 Change-Id: Ic17c6187bfa657154a9b04eb9c5b9a3de291cb1e Reviewed-by: Andrew Knight <andrew.knight@theqtcompany.com> Reviewed-by: Laszlo Agocs <laszlo.agocs@theqtcompany.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/quick/qquickwindow/tst_qquickwindow.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickwindow/tst_qquickwindow.cpp b/tests/auto/quick/qquickwindow/tst_qquickwindow.cpp
index a25ed9bf9c..7c94cf6d17 100644
--- a/tests/auto/quick/qquickwindow/tst_qquickwindow.cpp
+++ b/tests/auto/quick/qquickwindow/tst_qquickwindow.cpp
@@ -1209,6 +1209,11 @@ void tst_qquickwindow::headless()
QVERIFY(window->openglContext() == 0);
}
+ if (QGuiApplication::platformName() == QLatin1String("windows")
+ && QOpenGLContext::openGLModuleType() == QOpenGLContext::LibGLES) {
+ QSKIP("Crashes on Windows/ANGLE, QTBUG-42967");
+ }
+
// Destroy the native windowing system buffers
window->destroy();
QVERIFY(window->handle() == 0);