diff options
author | mread <qt-info@nokia.com> | 2011-06-03 11:05:12 (GMT) |
---|---|---|
committer | mread <qt-info@nokia.com> | 2011-06-03 11:05:12 (GMT) |
commit | 9af060d82a4738f6fb03aa4738d9377cdbb0df54 (patch) | |
tree | 2a73140412616dfe32f23274e55ada169eb59957 /tests | |
parent | b761f2e1b323012661a9aeed3873b1e5facb0f11 (diff) | |
download | Qt-9af060d82a4738f6fb03aa4738d9377cdbb0df54.zip Qt-9af060d82a4738f6fb03aa4738d9377cdbb0df54.tar.gz Qt-9af060d82a4738f6fb03aa4738d9377cdbb0df54.tar.bz2 |
Skipping tst_QEventLoop::processEventsExcludeSocket for qws
tst_QEventLoop::processEventsExcludeSocket is failing on qws after an
upgrade to that test. It looks most likely to be a qws fault, so a
defect QTBUG-19699 has been raised and this test skipped for qws in the
meantime.
Reviewed-by: Laszlo Agocs
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qeventloop/tst_qeventloop.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qeventloop/tst_qeventloop.cpp b/tests/auto/qeventloop/tst_qeventloop.cpp index 9196a47..7a8c441 100644 --- a/tests/auto/qeventloop/tst_qeventloop.cpp +++ b/tests/auto/qeventloop/tst_qeventloop.cpp @@ -633,6 +633,9 @@ public: void tst_QEventLoop::processEventsExcludeSocket() { +#if defined(Q_WS_QWS) + QSKIP("Socket message seems to be leaking through QEventLoop::exec(ExcludeSocketNotifiers) on qws (QTBUG-19699)", SkipAll); +#endif SocketTestThread thread; thread.start(); QVERIFY(thread.wait()); |