diff options
author | Simon Hausmann <simon.hausmann@theqtcompany.com> | 2015-04-22 10:19:05 +0200 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@theqtcompany.com> | 2015-04-23 13:36:05 +0000 |
commit | faadbee8b5ef976e93ec6e987fc860ae0044b9b5 (patch) | |
tree | dc50cd4021aa36484ff37d247d6a90c239a77d2f /tests/auto/quick/qquickborderimage | |
parent | 25b99c8f488c55d5a55874eacfb16b0d1b285cb0 (diff) | |
download | qtdeclarative-faadbee8b5ef976e93ec6e987fc860ae0044b9b5.tar.gz |
Skip the remote image source test and fix blacklisting of the other tests
There's a deadlock in qdbus that we're hitting with remote tests. We should
skip it and the other tests, but only on Linux.
Task-number: QTBUG-45655
Change-Id: I4523fdaa2c8855c5029667fb0e32b99ec563af27
Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'tests/auto/quick/qquickborderimage')
-rw-r--r-- | tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp b/tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp index 722f411b76..9ba773cfea 100644 --- a/tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp +++ b/tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp @@ -135,10 +135,12 @@ void tst_qquickborderimage::imageSource() QFETCH(bool, remote); QFETCH(QString, error); +#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID) if (qstrcmp(QTest::currentDataTag(), "remote") == 0 || qstrcmp(QTest::currentDataTag(), "remote not found") == 0) { QSKIP("Remote tests cause occasional hangs in the CI system -- QTBUG-45655"); } +#endif TestHTTPServer server; if (remote) { |