summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/socket/platformsocketengine
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/network/socket/platformsocketengine')
-rw-r--r--tests/auto/network/socket/platformsocketengine/tst_platformsocketengine.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/tests/auto/network/socket/platformsocketengine/tst_platformsocketengine.cpp b/tests/auto/network/socket/platformsocketengine/tst_platformsocketengine.cpp
index b362e6b08c..1b74d2ec55 100644
--- a/tests/auto/network/socket/platformsocketengine/tst_platformsocketengine.cpp
+++ b/tests/auto/network/socket/platformsocketengine/tst_platformsocketengine.cpp
@@ -85,7 +85,9 @@ private slots:
void simpleConnectToIMAP();
void udpLoopbackTest();
void udpIPv6LoopbackTest();
+#ifndef Q_OS_AIX
void broadcastTest();
+#endif
void serverTest();
void udpLoopbackPerformance();
void tcpLoopbackPerformance();
@@ -95,7 +97,9 @@ private slots:
void setSocketDescriptor();
void invalidSend();
void receiveUrgentData();
+#ifndef Q_OS_WIN
void tooManySockets();
+#endif
};
tst_PlatformSocketEngine::tst_PlatformSocketEngine()
@@ -296,11 +300,10 @@ void tst_PlatformSocketEngine::udpIPv6LoopbackTest()
}
//---------------------------------------------------------------------------
+
+#ifndef Q_OS_AIX
void tst_PlatformSocketEngine::broadcastTest()
{
-#ifdef Q_OS_AIX
- QSKIP("Broadcast does not work on darko", SkipAll);
-#endif
PLATFORMSOCKETENGINE broadcastSocket;
// Initialize a regular Udp socket
@@ -335,8 +338,8 @@ void tst_PlatformSocketEngine::broadcastTest()
QVERIFY(broadcastSocket.readDatagram(response.data(), response.size())
== response.size());
QCOMPARE(response, trollMessage);
-
}
+#endif
//---------------------------------------------------------------------------
void tst_PlatformSocketEngine::serverTest()
@@ -529,11 +532,11 @@ void tst_PlatformSocketEngine::readWriteBufferSize()
}
//---------------------------------------------------------------------------
+
+// Certain windows machines suffocate and spend too much time in this test.
+#ifndef Q_OS_WIN
void tst_PlatformSocketEngine::tooManySockets()
{
-#if defined Q_OS_WIN
- QSKIP("Certain windows machines suffocate and spend too much time in this test.", SkipAll);
-#endif
QList<PLATFORMSOCKETENGINE *> sockets;
PLATFORMSOCKETENGINE *socketLayer = 0;
for (;;) {
@@ -548,6 +551,7 @@ void tst_PlatformSocketEngine::tooManySockets()
qDeleteAll(sockets);
}
+#endif
//---------------------------------------------------------------------------
void tst_PlatformSocketEngine::bind()