summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorIvan Solovev <ivan.solovev@qt.io>2022-03-02 17:21:43 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-03-14 00:28:08 +0000
commita90a35b50498282c546a5c4ab3e097d7b6f33d78 (patch)
tree2300ce7c158ed7d698f711d3b8cfcd41ce17eb0a /tests
parent6a829e0d09bd81607d192040a1b6c3c12a58aad7 (diff)
Android: skip crashing tst_QPlainTextEdit::ensureCursorVisibleOnInitialShow
The test crashed for some reason, so other testcases are also not executed. Skip the test for now to enable more tests in the CI Task-number: QTBUG-89402 Change-Id: I5ad38645d1b8f86c64da7208c0ae4f66d126c7d9 Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io> (cherry picked from commit 5133ed072a809967087d53fb7bf9c88e925eb551) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/widgets/widgets/qplaintextedit/tst_qplaintextedit.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/widgets/widgets/qplaintextedit/tst_qplaintextedit.cpp b/tests/auto/widgets/widgets/qplaintextedit/tst_qplaintextedit.cpp
index 30d01825e9..2a86a6d753 100644
--- a/tests/auto/widgets/widgets/qplaintextedit/tst_qplaintextedit.cpp
+++ b/tests/auto/widgets/widgets/qplaintextedit/tst_qplaintextedit.cpp
@@ -1226,6 +1226,9 @@ void tst_QPlainTextEdit::canPaste()
void tst_QPlainTextEdit::ensureCursorVisibleOnInitialShow()
{
+#ifdef Q_OS_ANDROID
+ QSKIP("This test crashed on Android");
+#endif
QString manyPagesOfPlainText;
for (int i = 0; i < 800; ++i)
manyPagesOfPlainText += QLatin1String("Blah blah blah blah blah blah\n");