1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
Description: Disable all tests that fails with xvfb
So far some tests need real OpenGL support
Author: Sandro Knauß <bugs@sandroknauss.de>
Origin: Debian
Forwarded: not-needed - it is a limitation so far inside Debian
Last-Update: 2016-10-18
--- a/tests/auto/auto.pro
+++ b/tests/auto/auto.pro
@@ -9,8 +9,6 @@ SUBDIRS=\
installed_cmake \
toolsupport
-qtHaveModule(widgets): SUBDIRS += quickwidgets
-
qmldevtools.CONFIG = host_build
installed_cmake.depends = cmake
--- a/tests/auto/qml/debugger/debugger.pro
+++ b/tests/auto/qml/debugger/debugger.pro
@@ -5,7 +5,6 @@
qqmlenginedebugservice \
qqmldebugjs \
qqmlinspector \
- qqmlprofilerservice \
qpacketprotocol \
qqmlenginedebuginspectorintegrationtest \
qqmlenginecontrol \
--- a/tests/auto/qml/qml.pro
+++ b/tests/auto/qml/qml.pro
@@ -21,7 +21,6 @@ PUBLICTESTS += \
qqmlmoduleplugin \
qqmlnotifier \
qqmlqt \
- qqmlxmlhttprequest \
qtqmlmodules \
qquickfolderlistmodel \
qqmlapplicationengine \
@@ -69,8 +68,7 @@
qjsvalue
}
-SUBDIRS += $$PUBLICTESTS \
- qqmlextensionplugin
+SUBDIRS += $$PUBLICTESTS
SUBDIRS += $$METATYPETESTS
!winrt { # no QProcess on winrt
!contains(QT_CONFIG, no-qml-debug): SUBDIRS += debugger
--- a/tests/auto/quick/quick.pro
+++ b/tests/auto/quick/quick.pro
@@ -2,11 +2,8 @@ TEMPLATE = subdirs
PUBLICTESTS += \
geometry \
- rendernode \
qquickpixmapcache
-qtHaveModule(widgets): PUBLICTESTS += nodes
-
!cross_compile: PRIVATETESTS += examples
# This test requires the qtconcurrent module
|