From a90a35b50498282c546a5c4ab3e097d7b6f33d78 Mon Sep 17 00:00:00 2001 From: Ivan Solovev Date: Wed, 2 Mar 2022 17:21:43 +0100 Subject: 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 (cherry picked from commit 5133ed072a809967087d53fb7bf9c88e925eb551) Reviewed-by: Qt Cherry-pick Bot --- tests/auto/widgets/widgets/qplaintextedit/tst_qplaintextedit.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests') 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"); -- cgit v1.2.3