diff options
author | Joerg Bornemann <joerg.bornemann@digia.com> | 2012-11-02 08:44:32 (GMT) |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-11-02 12:02:05 (GMT) |
commit | 9b0b325254e9cc044202ae69152b2544c27e2149 (patch) | |
tree | 9f5cd5967f9b234449f1dbb7c39557742b214493 /tests/auto/qlocalsocket | |
parent | f428afb3def202582bf145c8783a6ac97a89fe78 (diff) | |
download | Qt-9b0b325254e9cc044202ae69152b2544c27e2149.zip Qt-9b0b325254e9cc044202ae69152b2544c27e2149.tar.gz Qt-9b0b325254e9cc044202ae69152b2544c27e2149.tar.bz2 |
skip flaky tst_QLocalSocket::threadedConnection on Windows
Make sure that we run at least the non-flaky QLocalSocket
tests.
Task-number: QTBUG-27816
Task-number: QTQAINFRA-574
Change-Id: I38bb0111248ff71dc8679e81ca418f9e2f7b98e3
Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
Diffstat (limited to 'tests/auto/qlocalsocket')
-rw-r--r-- | tests/auto/qlocalsocket/tst_qlocalsocket.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp index 0d23186..202f48a 100644 --- a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp +++ b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp @@ -755,6 +755,10 @@ 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 |