From 3dd8f4a21403712bb6e2d3b365abffdd1131f65f Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sat, 16 Jan 2016 21:41:09 +0000 Subject: [PATCH] Expand workaround for Qt on cygwin to 32 bit version --- test/integration/main.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/integration/main.cpp b/test/integration/main.cpp index 0f06d42d..7891b214 100644 --- a/test/integration/main.cpp +++ b/test/integration/main.cpp @@ -102,11 +102,9 @@ class IO { } void Close() { #ifdef __CYGWIN__ -#ifdef __x86_64__ - // Qt on cygwin64 silently doesn't send the rest of buffer from socket + // Qt on cygwin silently doesn't send the rest of buffer from socket // without this line sleep(1); -#endif #endif m_device->disconnectFromHost(); }