aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickborderimage
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2015-04-17 10:21:36 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-04-21 10:41:37 +0000
commit4789a29967381dc21f254f6aecd03c075652d6ca (patch)
treed8f748298bbc301aef59162a6400ca3b27b239d3 /tests/auto/quick/qquickborderimage
parent1883fd4e59128ce114f5a2bb492cc29d541f4f15 (diff)
Skip some tests that are hanging in the CI system
It is most unfortunate that those tests are hanging, but in order to move forward we temporarily skip them. Task-number: QTBUG-45655 Change-Id: I9fae6c21ca3b5c7eb6715d520bd58e366136ed58 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'tests/auto/quick/qquickborderimage')
-rw-r--r--tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp b/tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp
index fe5afb25f0..722f411b76 100644
--- a/tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp
+++ b/tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp
@@ -135,6 +135,11 @@ void tst_qquickborderimage::imageSource()
QFETCH(bool, remote);
QFETCH(QString, error);
+ 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");
+ }
+
TestHTTPServer server;
if (remote) {
QVERIFY2(server.listen(SERVER_PORT), qPrintable(server.errorString()));