aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2012-01-05 15:44:06 +0000
committerQt by Nokia <qt-info@nokia.com>2012-01-05 17:31:47 +0100
commit8cebb6f83dfaed366a14686fc9639c5ca1079996 (patch)
tree774fdb6ddfd6510e22b91a6502eea995cd59bf3e /tests
parent89429f88a55294f35c1c02d11295b35cb7f6dd13 (diff)
Skip failing autotests
Task-number: QTBUG-23482 Change-Id: I17641e2e8e99afedecfd88e82651fbf859ff9a5e Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qtquick2/qquickpathview/tst_qquickpathview.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/qtquick2/qquickpathview/tst_qquickpathview.cpp b/tests/auto/qtquick2/qquickpathview/tst_qquickpathview.cpp
index e48805c100..8e602c7a90 100644
--- a/tests/auto/qtquick2/qquickpathview/tst_qquickpathview.cpp
+++ b/tests/auto/qtquick2/qquickpathview/tst_qquickpathview.cpp
@@ -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");