summaryrefslogtreecommitdiff
path: root/tests/auto/extras/data/tst_common.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/extras/data/tst_common.qml')
-rw-r--r--tests/auto/extras/data/tst_common.qml8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/auto/extras/data/tst_common.qml b/tests/auto/extras/data/tst_common.qml
index 2983103a..8b75838d 100644
--- a/tests/auto/extras/data/tst_common.qml
+++ b/tests/auto/extras/data/tst_common.qml
@@ -65,15 +65,17 @@ TestCase {
];
}
+ function init() {
+ if (Qt.platform.os === "windows")
+ skip("QTBUG-53123");
+ }
+
function cleanup() {
if (control)
control.destroy();
}
function test_resize(data) {
- if (data.tag === "PieMenu" && Qt.platform.os === "windows")
- skip("QTBUG-53123");
-
var qml = data.qml ? data.qml : "import QtQuick.Extras 1.4; " + data.tag + " { }";
control = Qt.createQmlObject(qml, testCase, "");