summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/socket/qlocalsocket/tst_qlocalsocket.cpp
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@theqtcompany.com>2016-04-05 07:01:49 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2016-04-05 07:01:49 +0000
commita2970719c26c946fd6fea7d902aad6706a4ca6ea (patch)
tree53072d5736c493e5bf3e2ac6ba1406d4561e1f82 /tests/auto/network/socket/qlocalsocket/tst_qlocalsocket.cpp
parentf68c62cdfc4d66def52aa73fbc2ad58acc32af62 (diff)
parent216f57ef8682f74b72ae4e39cf1fd23abddf6a51 (diff)
Merge "Merge remote-tracking branch 'origin/5.6' into 5.7" into refs/staging/5.7
Diffstat (limited to 'tests/auto/network/socket/qlocalsocket/tst_qlocalsocket.cpp')
-rw-r--r--tests/auto/network/socket/qlocalsocket/tst_qlocalsocket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/network/socket/qlocalsocket/tst_qlocalsocket.cpp b/tests/auto/network/socket/qlocalsocket/tst_qlocalsocket.cpp
index d553854cb2..b5032c8c35 100644
--- a/tests/auto/network/socket/qlocalsocket/tst_qlocalsocket.cpp
+++ b/tests/auto/network/socket/qlocalsocket/tst_qlocalsocket.cpp
@@ -603,7 +603,7 @@ void tst_QLocalSocket::readBufferOverflow()
serverSocket->write(buffer, dataBufferSize);
#ifndef Q_OS_WIN
// The data is not immediately sent, but buffered.
- // On Windows, the flushing is done asynchronously by a separate thread.
+ // On Windows, the flushing is done by an asynchronous write operation.
// However, this operation will never complete as long as the data is not
// read by the other end, so the call below always times out.
// On Unix, the flushing is synchronous and thus needs to be done before