aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qsgtextinput
diff options
context:
space:
mode:
authorToby Tomkins <toby.tomkins@nokia.com>2011-09-19 11:23:36 +1000
committerQt by Nokia <qt-info@nokia.com>2011-09-21 09:59:09 +0200
commit95a5546ac3e0aeddb4f482a314286ef0d921516a (patch)
tree376002824903b9c41d64bf097d71eb227c343a3c /tests/auto/declarative/qsgtextinput
parent51102228258ed107a255b79606ef855bfa0e460d (diff)
Remove expected failure for qpa platform
QTBUG-21011 has been resolved, hence the qpa platform can be enabled for this test. Change-Id: I1a1e76077eb102c389b09c79e069f6d9e25e2637 Reviewed-on: http://codereview.qt-project.org/4624 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/declarative/qsgtextinput')
-rw-r--r--tests/auto/declarative/qsgtextinput/tst_qsgtextinput.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/auto/declarative/qsgtextinput/tst_qsgtextinput.cpp b/tests/auto/declarative/qsgtextinput/tst_qsgtextinput.cpp
index 0110a103c1..dafed15bf4 100644
--- a/tests/auto/declarative/qsgtextinput/tst_qsgtextinput.cpp
+++ b/tests/auto/declarative/qsgtextinput/tst_qsgtextinput.cpp
@@ -1245,10 +1245,6 @@ void tst_qsgtextinput::positionAt()
int diff = abs(textWidth - (textLeftWidth+textinputObject->width()/2));
-#ifdef Q_WS_QPA
- QEXPECT_FAIL("", "QTBUG-21011 fails", Continue);
-#endif
-
// some tollerance for different fonts.
#ifdef Q_OS_LINUX
QVERIFY(diff < 2);
@@ -1286,10 +1282,6 @@ void tst_qsgtextinput::positionAt()
diff = abs(int(textLeftWidth-textinputObject->width()/2));
-#ifdef Q_WS_QPA
- QEXPECT_FAIL("", "QTBUG-21011 fails", Continue);
-#endif
-
// some tollerance for different fonts.
#ifdef Q_OS_LINUX
QVERIFY(diff < 2);
@@ -2381,9 +2373,6 @@ void tst_qsgtextinput::preeditAutoScroll()
// test the text is scrolled so the preedit is visible.
ic.sendPreeditText(preeditText.mid(0, 3), 1);
-#ifdef Q_WS_QPA
- QEXPECT_FAIL("", "QTBUG-21011 fails", Abort);
-#endif
QVERIFY(input->positionAt(0) != 0);
QVERIFY(input->cursorRectangle().left() < input->boundingRect().width());
QCOMPARE(cursorRectangleSpy.count(), ++cursorRectangleChanges);