Skip failing autotests
authorAaron Kennedy <aaron.kennedy@nokia.com>
Thu, 5 Jan 2012 15:44:06 +0000 (15:44 +0000)
committerQt by Nokia <qt-info@nokia.com>
Thu, 5 Jan 2012 16:31:47 +0000 (17:31 +0100)
Task-number: QTBUG-23482
Change-Id: I17641e2e8e99afedecfd88e82651fbf859ff9a5e
Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
tests/auto/qtquick2/qquickpathview/tst_qquickpathview.cpp

index e48805c..8e602c7 100644 (file)
@@ -1194,6 +1194,10 @@ void tst_QQuickPathView::pathUpdateOnStartChanged()
 
 void tst_QQuickPathView::package()
 {
+#ifdef Q_OS_MAC
+    QSKIP("QTBUG-23482");
+#endif
+
     QQuickView *canvas = createView();
     QVERIFY(canvas);
     canvas->setSource(testFileUrl("pathview_package.qml"));
@@ -1284,6 +1288,10 @@ void tst_QQuickPathView::visualDataModel()
 
 void tst_QQuickPathView::undefinedPath()
 {
+#ifdef Q_OS_MAC
+    QSKIP("QTBUG-23482");
+#endif
+
     QDeclarativeEngine engine;
 
     QString warning1("QPainterPath::moveTo: Adding point where x or y is NaN or Inf, ignoring call");