CPPUNIT_TEST_SUITE( FileSystemWatcherTestCase );
CPPUNIT_TEST( TestEventCreate );
CPPUNIT_TEST( TestEventDelete );
+
+ // FIXME: Currently this test fails under Windows.
+#ifndef __WINDOWS__
CPPUNIT_TEST( TestTrees );
+#endif // __WINDOWS__
// kqueue-based implementation doesn't collapse create/delete pairs in
// renames and doesn't detect neither modifications nor access to the
void TestEventRename();
void TestEventModify();
void TestEventAccess();
+#ifndef __WINDOWS__
void TestTrees();
+#endif // __WINDOWS__
void TestNoEventsAfterRemove();
// ----------------------------------------------------------------------------
// TestTrees
// ----------------------------------------------------------------------------
+#ifndef __WINDOWS__
void FileSystemWatcherTestCase::TestTrees()
{
class TreeTester : public EventHandler
TreeTester tester;
tester.Run();
}
+#endif // __WINDOWS__
namespace
{