Skip test that accesses deleted QML engine
authorKent Hansen <kent.hansen@nokia.com>
Mon, 12 Mar 2012 12:13:48 +0000 (13:13 +0100)
committerQt by Nokia <qt-info@nokia.com>
Mon, 12 Mar 2012 16:04:13 +0000 (17:04 +0100)
The test is blocking the CI because it crashes on linux/x64.
By "luck" it doesn't crash on the other test machines -- valgrind
still complains, though.

Task-number: QTBUG-24734
Change-Id: I6bc12ca72f8900339bc9139b40cf828aff8e47ba
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp

index ae30090..13ea1ab 100644 (file)
@@ -1553,6 +1553,8 @@ void tst_qqmlproperty::crashOnValueProperty()
     delete engine;
     engine = 0;
 
+    QSKIP("QTBUG-24734: test accesses deleted QML engine from QQmlProperty::propertyTypeName()");
+
     QCOMPARE(p.propertyTypeName(), "int");
     QCOMPARE(p.read(), QVariant(10));
     p.write(QVariant(20));