]> git.saurik.com Git - wxWidgets.git/commitdiff
Temporarily disable wxFileSystemWatcher unit test under OS X.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 22 Mar 2010 16:08:44 +0000 (16:08 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 22 Mar 2010 16:08:44 +0000 (16:08 +0000)
This tests hangs and never finishes, disable it for now to allow buildbot to
at least run the other tests.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63739 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/fswatcher/fswatchertest.cpp

index e8a61c67da8a322d6822bc335cd603a6a630cc6b..bc7ff966bfc70db8197602edb5fd6b9e24d3a055 100644 (file)
@@ -425,8 +425,15 @@ private:
     DECLARE_NO_COPY_CLASS(FileSystemWatcherTestCase)
 };
 
     DECLARE_NO_COPY_CLASS(FileSystemWatcherTestCase)
 };
 
+// the test currently hangs under OS X for some reason and this prevents tests
+// ran by buildbot from completing so disable it until someone has time to
+// debug it
+//
+// FIXME: debug and fix this!
+#ifndef __WXOSX__
 // register in the unnamed registry so that these tests are run by default
 CPPUNIT_TEST_SUITE_REGISTRATION( FileSystemWatcherTestCase );
 // register in the unnamed registry so that these tests are run by default
 CPPUNIT_TEST_SUITE_REGISTRATION( FileSystemWatcherTestCase );
+#endif
 
 // also include in it's own registry so that these tests can be run alone
 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FileSystemWatcherTestCase,
 
 // also include in it's own registry so that these tests can be run alone
 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FileSystemWatcherTestCase,