summaryrefslogtreecommitdiff
path: root/tests/auto/extras
diff options
context:
space:
mode:
authorSami Nurmenniemi <sami.nurmenniemi@qt.io>2017-12-19 13:41:36 +0200
committerLiang Qi <liang.qi@qt.io>2017-12-19 12:02:21 +0000
commit3be9ca58af5a011fdd20a7aba608781865544e01 (patch)
tree1a8dbf0ef5875ddf0d7fd8dfd06b4cbd00a01610 /tests/auto/extras
parent3aeca5366600fa4f888865012bf6b9e2b5418181 (diff)
downloadqtquickcontrols-3be9ca58af5a011fdd20a7aba608781865544e01.tar.gz
Skip test failing because of qemu crash
Lots of tests fail when qemu crashes with output: "tb_lock: Assertion `!have_tb_lock' failed." These need to be fixed with QTBUG-65211. Task-number: QTBUG-65307 Change-Id: I7d7249d2e7c9a18d10e15a6e79f34dc1ec93e5d6 Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
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, 20 insertions, 0 deletions
diff --git a/tests/auto/extras/data/tst_circulartickmarklabel.qml b/tests/auto/extras/data/tst_circulartickmarklabel.qml
index deddc9b7..648f2bae 100644
--- a/tests/auto/extras/data/tst_circulartickmarklabel.qml
+++ b/tests/auto/extras/data/tst_circulartickmarklabel.qml
@@ -63,6 +63,9 @@ 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 dc554735..745a31bf 100644
--- a/tests/auto/extras/data/tst_common.qml
+++ b/tests/auto/extras/data/tst_common.qml
@@ -78,6 +78,8 @@ 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 5475037e..87949416 100644
--- a/tests/auto/extras/data/tst_delaybutton.qml
+++ b/tests/auto/extras/data/tst_delaybutton.qml
@@ -59,6 +59,11 @@ 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 3b0be526..fa0d90d9 100644
--- a/tests/auto/extras/data/tst_piemenu.qml
+++ b/tests/auto/extras/data/tst_piemenu.qml
@@ -89,6 +89,11 @@ 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 5585b5db..0e4e449c 100644
--- a/tests/auto/extras/data/tst_tumbler.qml
+++ b/tests/auto/extras/data/tst_tumbler.qml
@@ -93,6 +93,11 @@ Item {
}
}
+ function init() {
+ if (Qt.platform.pluginName === "offscreen")
+ skip("QTBUG-65211")
+ }
+
function test_instance() {
var tumbler = createTemporaryObject(tumblerComponent, container);
verify(tumbler);