Add exception for qpa, xcb platform for failing test
authorToby Tomkins <toby.tomkins@nokia.com>
Tue, 13 Sep 2011 07:05:42 +0000 (17:05 +1000)
committerQt by Nokia <qt-info@nokia.com>
Fri, 16 Sep 2011 01:48:32 +0000 (03:48 +0200)
Task-number: QTBUG-21416

Change-Id: I69986ea120d908d20a4ef73bf137ca0906dc4351
Reviewed-on: http://codereview.qt-project.org/4729
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
tests/auto/declarative/qsgvisualdatamodel/tst_qsgvisualdatamodel.cpp

index 17405ac..f8a2a1f 100644 (file)
@@ -277,6 +277,9 @@ void tst_qsgvisualdatamodel::childChanged()
 
     QSGText *name = findItem<QSGText>(contentItem, "display", 0);
     QVERIFY(name);
+#ifdef Q_WS_QPA
+    QEXPECT_FAIL("", "QTBUG-21416 fails", Abort);
+#endif
     QCOMPARE(name->text(), QString("Row 2 Child Item"));
 
     model.item(1,0)->child(0,0)->setText("Row 2 updated child");