summaryrefslogtreecommitdiff
path: root/tests/auto/extras
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/extras')
-rw-r--r--tests/auto/extras/data/tst_circulartickmarklabel.qml3
-rw-r--r--tests/auto/extras/data/tst_common.qml2
-rw-r--r--tests/auto/extras/data/tst_delaybutton.qml5
-rw-r--r--tests/auto/extras/data/tst_piemenu.qml5
-rw-r--r--tests/auto/extras/data/tst_tumbler.qml5
5 files changed, 0 insertions, 20 deletions
diff --git a/tests/auto/extras/data/tst_circulartickmarklabel.qml b/tests/auto/extras/data/tst_circulartickmarklabel.qml
index 648f2bae..deddc9b7 100644
--- a/tests/auto/extras/data/tst_circulartickmarklabel.qml
+++ b/tests/auto/extras/data/tst_circulartickmarklabel.qml
@@ -63,9 +63,6 @@ TestCase {
property var label: null
function init() {
- if (Qt.platform.pluginName === "offscreen")
- skip("QTBUG-65211")
-
label = Qt.createQmlObject("import QtQuick.Extras 1.4; import QtQuick.Extras.Private 1.0; CircularTickmarkLabel {}", testcase, "");
verify(label, "CircularTickmarkLabel: failed to create an instance");
verify(label.__style);
diff --git a/tests/auto/extras/data/tst_common.qml b/tests/auto/extras/data/tst_common.qml
index 745a31bf..dc554735 100644
--- a/tests/auto/extras/data/tst_common.qml
+++ b/tests/auto/extras/data/tst_common.qml
@@ -78,8 +78,6 @@ TestCase {
function init() {
if (Qt.platform.os === "windows")
skip("QTBUG-53123");
- if (Qt.platform.pluginName === "offscreen")
- skip("QTBUG-65211")
}
function cleanup() {
diff --git a/tests/auto/extras/data/tst_delaybutton.qml b/tests/auto/extras/data/tst_delaybutton.qml
index 87949416..5475037e 100644
--- a/tests/auto/extras/data/tst_delaybutton.qml
+++ b/tests/auto/extras/data/tst_delaybutton.qml
@@ -59,11 +59,6 @@ TestCase {
width: 400
height: 400
- function init() {
- if (Qt.platform.pluginName === "offscreen")
- skip("QTBUG-65211")
- }
-
function test_instance() {
var button = Qt.createQmlObject('import QtQuick.Extras 1.4; DelayButton { }', testcase, '')
verify (button, "DelayButton: failed to create an instance")
diff --git a/tests/auto/extras/data/tst_piemenu.qml b/tests/auto/extras/data/tst_piemenu.qml
index fa0d90d9..3b0be526 100644
--- a/tests/auto/extras/data/tst_piemenu.qml
+++ b/tests/auto/extras/data/tst_piemenu.qml
@@ -89,11 +89,6 @@ Item {
PieMenu {}
}
- function init() {
- if (Qt.platform.pluginName === "offscreen")
- skip("QTBUG-65211")
- }
-
function cleanup() {
currentIndexSignalSpy.clear();
actionSignalSpy.clear();
diff --git a/tests/auto/extras/data/tst_tumbler.qml b/tests/auto/extras/data/tst_tumbler.qml
index 0e4e449c..5585b5db 100644
--- a/tests/auto/extras/data/tst_tumbler.qml
+++ b/tests/auto/extras/data/tst_tumbler.qml
@@ -93,11 +93,6 @@ Item {
}
}
- function init() {
- if (Qt.platform.pluginName === "offscreen")
- skip("QTBUG-65211")
- }
-
function test_instance() {
var tumbler = createTemporaryObject(tumblerComponent, container);
verify(tumbler);