summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/qgl_threads/tst_openglthreading.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/qgl_threads/tst_openglthreading.cpp b/tests/auto/qgl_threads/tst_openglthreading.cpp
index 6634869..cf100cb 100644
--- a/tests/auto/qgl_threads/tst_openglthreading.cpp
+++ b/tests/auto/qgl_threads/tst_openglthreading.cpp
@@ -145,6 +145,10 @@ public:
void tst_OpenGLThreading::swapInThread()
{
+#ifdef Q_OS_MAC
+ QSKIP("OpenGL threading tests are currently disabled on mac as they were causing reboots", SkipAll);
+#endif
+
QGLFormat format;
format.setSwapInterval(1);
ForegroundWidget widget(format);
@@ -247,6 +251,10 @@ private:
void tst_OpenGLThreading::textureUploadInThread()
{
+#ifdef Q_OS_MAC
+ QSKIP("OpenGL threading tests are currently disabled on mac as they were causing reboots", SkipAll);
+#endif
+
TextureDisplay display;
CreateAndUploadThread thread(&display);
@@ -417,6 +425,10 @@ void tst_OpenGLThreading::renderInThread_data()
void tst_OpenGLThreading::renderInThread()
{
+#ifdef Q_OS_MAC
+ QSKIP("OpenGL threading tests are currently disabled on mac as they were causing reboots", SkipAll);
+#endif
+
QFETCH(bool, resize);
QFETCH(bool, update);