tags 666627 + patch thanks * Lucas Nussbaum <lu...@lucas-nussbaum.net>, 2012-03-31, 21:33:
test_create_file (tests.sourcetreemon.GaminSourceTreeMonitorTestCase) ... FAIL test_remove_directory (tests.sourcetreemon.GaminSourceTreeMonitorTestCase) ... FAIL test_remove_file (tests.sourcetreemon.GaminSourceTreeMonitorTestCase) ... FAIL test_remove_nested_directories (tests.sourcetreemon.GaminSourceTreeMonitorTestCase) ... FAIL test_rename_directory (tests.sourcetreemon.GaminSourceTreeMonitorTestCase) ... FAIL test_rename_file (tests.sourcetreemon.GaminSourceTreeMonitorTestCase) ... FAIL test_replace_file (tests.sourcetreemon.GaminSourceTreeMonitorTestCase) ... FAIL test_update_file (tests.sourcetreemon.GaminSourceTreeMonitorTestCase) ... FAIL test_create_directory (tests.sourcetreemon.DeferredGaminSourceTreeMonitorTestCase) ... FAIL test_create_file (tests.sourcetreemon.DeferredGaminSourceTreeMonitorTestCase) ... FAIL test_remove_directory (tests.sourcetreemon.DeferredGaminSourceTreeMonitorTestCase) ... FAIL test_remove_file (tests.sourcetreemon.DeferredGaminSourceTreeMonitorTestCase) ... FAIL test_remove_nested_directories (tests.sourcetreemon.DeferredGaminSourceTreeMonitorTestCase) ... FAIL test_rename_directory (tests.sourcetreemon.DeferredGaminSourceTreeMonitorTestCase) ... FAIL test_rename_file (tests.sourcetreemon.DeferredGaminSourceTreeMonitorTestCase) ... FAIL test_replace_file (tests.sourcetreemon.DeferredGaminSourceTreeMonitorTestCase) ... FAIL test_update_file (tests.sourcetreemon.DeferredGaminSourceTreeMonitorTestCase) ... FAIL
While it would be worthwhile to investigate with Gamin-based source tree monitor stopped working, I hereby propose to simply disable it. As far as I understand it, it wasn't used by the binary package anyway.
-- Jakub Wilk
Description: disable gamin support Author: Jakub Wilk <jw...@debian.org> Forwarded: not-needed Last-Update: 2012-04-27 --- a/tests/sourcetreemon.py +++ b/tests/sourcetreemon.py @@ -349,7 +349,7 @@ manager.add_test_case_class(DeferredInotifyxSourceTreeMonitorTestCase) -if PLATFORM not in NO_GAMIN_PLATFORMS: +if 0: # Testing Gamin disabled for Debian class GaminSourceTreeMonitorTestCase(_SourceTreeMonitorTestCase): sourcetreemoncls = GaminSourceTreeMonitor sets_is_dir = False --- a/modules/pytagsfs/sourcetreemon/__init__.py +++ b/modules/pytagsfs/sourcetreemon/__init__.py @@ -10,7 +10,6 @@ SOURCE_TREE_MONITORS = ( 'pytagsfs.sourcetreemon.inotifyx_.DeferredInotifyxSourceTreeMonitor', - 'pytagsfs.sourcetreemon.gamin_.DeferredGaminSourceTreeMonitor', 'pytagsfs.sourcetreemon.kqueue_.DeferredKqueueSourceTreeMonitor', 'pytagsfs.sourcetreemon.dummy.DummySourceTreeMonitor', )