diff options
author | Joerg Bornemann <joerg.bornemann@nokia.com> | 2009-09-23 13:04:11 +0200 |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@nokia.com> | 2009-09-23 13:14:32 +0200 |
commit | b50c1540cc06860aab0d46f27566dce6d9fc53cf (patch) | |
tree | 13a8c9516d16625e5a6816b55891d73d026516fe /tests | |
parent | 0f23b6def41928c3312837deb20f824dde8ef486 (diff) | |
download | qt4-tools-b50c1540cc06860aab0d46f27566dce6d9fc53cf.tar.gz |
tst_QFileSystemWatcher::watchFileAndItsDirectory fixed for Windows CE
We skip parts of watchDirectory for the same reason.
Reviewed-by: thartman
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qfilesystemwatcher/tst_qfilesystemwatcher.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qfilesystemwatcher/tst_qfilesystemwatcher.cpp b/tests/auto/qfilesystemwatcher/tst_qfilesystemwatcher.cpp index 489a1ede15..32cbed3afe 100644 --- a/tests/auto/qfilesystemwatcher/tst_qfilesystemwatcher.cpp +++ b/tests/auto/qfilesystemwatcher/tst_qfilesystemwatcher.cpp @@ -487,6 +487,9 @@ void tst_QFileSystemWatcher::watchFileAndItsDirectory() timer.start(3000); eventLoop.exec(); QCOMPARE(fileChangedSpy.count(), 0); +#ifdef Q_OS_WINCE + QEXPECT_FAIL("poller", "Directory does not get updated on file removal(See #137910)", Abort); +#endif #if defined(Q_OS_SYMBIAN) && defined(Q_CC_RVCT) // Since native watcher is always used in real devices, this poller issue is irrelevant // Symbian file system does not change modification time on a directory when a file inside is changed |