diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qlocalsocket/tst_qlocalsocket.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp index 202f48a..5462d1c 100644 --- a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp +++ b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp @@ -697,7 +697,7 @@ public: // We should *not* have this signal yet! QCOMPARE(spyReadyRead.count(), 0); - socket.waitForReadyRead(); + QVERIFY(socket.waitForReadyRead()); QCOMPARE(spyReadyRead.count(), 1); QTextStream in(&socket); QCOMPARE(in.readLine(), testLine); @@ -755,10 +755,6 @@ void tst_QLocalSocket::threadedConnection_data() void tst_QLocalSocket::threadedConnection() { -#if defined(Q_OS_WIN) - QSKIP("This test is flaky on Windows. See QTBUG-27816 and QTQAINFRA-574.", SkipAll); -#endif - #ifdef Q_OS_SYMBIAN unlink("qlocalsocket_threadtest"); #endif |