aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquicktext
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2012-01-06 15:42:51 +1000
committerQt by Nokia <qt-info@nokia.com>2012-01-12 07:24:00 +0100
commit668fff3b0fc52e081dcab5fc4e76fdfc72f4a5f0 (patch)
treeb148b5ee7a85a9c4083482a6bd4c9c2877b1741d /tests/auto/qtquick2/qquicktext
parent5f1988658ae95acec73d522b0f291ff8b9fa4e7f (diff)
Update text autotests.
QTBUG-18040 has been fixed for Qt 5, we no longer need to skip these tests on Mac. Change-Id: Ie1883a75b105ca321388b3c4483110306e2a387c Reviewed-by: Andrew den Exter <andrew.den-exter@nokia.com>
Diffstat (limited to 'tests/auto/qtquick2/qquicktext')
-rw-r--r--tests/auto/qtquick2/qquicktext/tst_qquicktext.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/auto/qtquick2/qquicktext/tst_qquicktext.cpp b/tests/auto/qtquick2/qquicktext/tst_qquicktext.cpp
index fad3bce1a6..bb27505ffb 100644
--- a/tests/auto/qtquick2/qquicktext/tst_qquicktext.cpp
+++ b/tests/auto/qtquick2/qquicktext/tst_qquicktext.cpp
@@ -711,7 +711,6 @@ void tst_qquicktext::horizontalAlignment_RightToLeft()
QCOMPARE(text->hAlign(), QQuickText::AlignLeft);
QVERIFY(textPrivate->layout.lineAt(0).naturalTextRect().left() < canvas->width()/2);
-#ifndef Q_OS_MAC // QTBUG-18040
// empty text with implicit alignment follows the system locale-based
// keyboard input direction from QApplication::keyboardInputDirection
text->setText("");
@@ -719,11 +718,9 @@ void tst_qquicktext::horizontalAlignment_RightToLeft()
QQuickText::AlignLeft : QQuickText::AlignRight);
text->setHAlign(QQuickText::AlignRight);
QCOMPARE(text->hAlign(), QQuickText::AlignRight);
-#endif
delete canvas;
-#ifndef Q_OS_MAC // QTBUG-18040
// alignment of Text with no text set to it
QString componentStr = "import QtQuick 2.0\nText {}";
QDeclarativeComponent textComponent(&engine);
@@ -732,7 +729,6 @@ void tst_qquicktext::horizontalAlignment_RightToLeft()
QCOMPARE(textObject->hAlign(), QApplication::keyboardInputDirection() == Qt::LeftToRight ?
QQuickText::AlignLeft : QQuickText::AlignRight);
delete textObject;
-#endif
}
void tst_qquicktext::verticalAlignment()