summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@qt.io>2018-05-03 12:15:06 +0200
committerOliver Wolff <oliver.wolff@qt.io>2018-05-07 07:37:51 +0000
commit4dada8068a8a5c4cd52958cf25fd2a50b1af5ac0 (patch)
tree60682c37c5e51e43afb46bebac726d921aba52a3 /tests
parent43ea15d01cd491639d8cb5eb85da066f5d0a8571 (diff)
tst_qiodevice: Skip broken winrt tests
Change-Id: I399cc1aed3ee4151cf6adfd8f8780d8975604d52 Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io> Reviewed-by: Andre de la Rocha <andre.rocha@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/corelib/io/qiodevice/tst_qiodevice.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/corelib/io/qiodevice/tst_qiodevice.cpp b/tests/auto/corelib/io/qiodevice/tst_qiodevice.cpp
index 4923baa0ca..fed05698fd 100644
--- a/tests/auto/corelib/io/qiodevice/tst_qiodevice.cpp
+++ b/tests/auto/corelib/io/qiodevice/tst_qiodevice.cpp
@@ -104,6 +104,9 @@ void tst_QIODevice::getSetCheck()
//----------------------------------------------------------------------------------
void tst_QIODevice::constructing_QTcpSocket()
{
+#if defined(Q_OS_WINRT)
+ QSKIP("Synchronous socket calls are broken on winrt. See QTBUG-40922");
+#endif
if (!QtNetworkSettings::verifyTestNetworkSettings())
QSKIP("No network test server available");
@@ -263,6 +266,9 @@ void tst_QIODevice::unget()
buffer.ungetChar('Q');
QCOMPARE(buffer.readLine(buf, 3), qint64(1));
+#if defined(Q_OS_WINRT)
+ QSKIP("Synchronous socket calls are broken on winrt. See QTBUG-40922");
+#endif
for (int i = 0; i < 2; ++i) {
QTcpSocket socket;
QIODevice *dev;