Expect tst_QColumnView::moveCursor() failure on Mac OS X

Both test data fail.

Task-number: QTBUG-23697
Change-Id: Iee4b08a88db33c72c584e326e928863af61c8dd4
Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
This commit is contained in:
Bradley T. Hughes 2012-01-18 08:19:38 +01:00 committed by Qt by Nokia
parent e6a538a3ed
commit cdfb3f29c2

View File

@ -537,6 +537,9 @@ void tst_QColumnView::moveCursor()
idx = idx.sibling(idx.row() + 1, idx.column());
view.setCurrentIndex(idx);
mc = view.MoveCursor(action, Qt::NoModifier);
#ifdef Q_OS_MAC
QEXPECT_FAIL("", "QTBUG-23697", Continue);
#endif
QCOMPARE(mc, idx.sibling(idx.row() + 1, idx.column()));
}