From ee25a49e9b09f48035d62e4e711e72899c63a5b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Tue, 16 Sep 2014 12:20:27 +0200 Subject: [PATCH] wait time fixes to make testsuite complete successfully on WEC2013 --- Net/testsuite/src/TCPServerTest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Net/testsuite/src/TCPServerTest.cpp b/Net/testsuite/src/TCPServerTest.cpp index 8f2f5acfc..d0d8c49b4 100644 --- a/Net/testsuite/src/TCPServerTest.cpp +++ b/Net/testsuite/src/TCPServerTest.cpp @@ -207,21 +207,21 @@ void TCPServerTest::testMultiConnections() assert (srv.totalConnections() == 5); ss2.close(); - Thread::sleep(1000); + Thread::sleep(2000); assert (srv.currentConnections() == 4); assert (srv.currentThreads() == 4); assert (srv.queuedConnections() == 0); assert (srv.totalConnections() == 6); ss3.close(); - Thread::sleep(1000); + Thread::sleep(2000); assert (srv.currentConnections() == 3); assert (srv.currentThreads() == 3); assert (srv.queuedConnections() == 0); assert (srv.totalConnections() == 6); ss4.close(); - Thread::sleep(1000); + Thread::sleep(2000); assert (srv.currentConnections() == 2); assert (srv.currentThreads() == 2); assert (srv.queuedConnections() == 0);