summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@theqtcompany.com>2015-09-17 08:40:43 +0200
committerJani Heikkinen <jani.heikkinen@theqtcompany.com>2015-09-17 08:08:28 +0000
commitf079636a3ee5538eb79fd4e7e6ffcb0465a015a0 (patch)
tree113874899d4284d5350ed69f96d661830d7c4524
parent9a3807656e2d917acf271bb16f4e296136e52d1d (diff)
Skip failing autotest tst_qdeclarativetextedit::delegateLoadingv5.5.15.5
The test failures point to a race condition in QtNetwork when a socket is prematurely closed by the server. Anyhow, the race condition has been there before, just that a recent change in Qt5Core made it more likely to be hit. Disabling the test for now: This is better handled in qtbase, and shouldn't block the release. Task-number: QTBUG-48299 Change-Id: If6877d47940d422e94b6d20d24a8fbdb89692f71 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
-rw-r--r--tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp
index 9459ca20..031df00e 100644
--- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp
+++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp
@@ -1919,6 +1919,9 @@ void tst_qdeclarativetextedit::delegateLoading()
QFETCH(QString, qmlfile);
QFETCH(QString, error);
+ if (qstrcmp(QTest::currentDataTag(), "fail1") == 0)
+ QSKIP("QTBUG-48299", SkipSingle);
+
TestHTTPServer server(42332);
server.serveDirectory(testFile("httpfail"), TestHTTPServer::Disconnect);
server.serveDirectory(testFile("httpslow"), TestHTTPServer::Delay);