aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSami Nurmenniemi <sami.nurmenniemi@qt.io>2018-05-23 08:14:09 +0300
committerSami Nurmenniemi <sami.nurmenniemi@qt.io>2018-05-23 08:08:32 +0000
commit4710c250e8c04a2572d618f19fd6d0301d80acb8 (patch)
tree0546221e863b53f90602092eb1f370c7656f6b9f
parentebb6c180bef3156cfe2d2df134e5d1bdf0f771b8 (diff)
Skip crashing test on offscreen platform
Test currently crashes often on QEMU so it needs to be skipped until root cause is found. Blacklisting is not enough since it does not capture crashes. Task-number: QTBUG-68349 Change-Id: I72aaeae3cc338fc59fea43ee766eea3762a1eaa6 Reviewed-by: Jarkko Koivikko <jarkko.koivikko@code-q.fi> Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
-rw-r--r--tests/auto/inputpanel/data/tst_inputpanel.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/inputpanel/data/tst_inputpanel.qml b/tests/auto/inputpanel/data/tst_inputpanel.qml
index 05c88d82..97cd51b3 100644
--- a/tests/auto/inputpanel/data/tst_inputpanel.qml
+++ b/tests/auto/inputpanel/data/tst_inputpanel.qml
@@ -784,6 +784,10 @@ Rectangle {
}
function test_spellCorrectionAutomaticSpaceInsertion(data) {
+ if (Qt.platform.pluginName === "offscreen") {
+ skip("QTBUG-68349");
+ }
+
prepareTest(data)
for (var inputIndex in data.inputSequence) {