From 273bd57cd821b23614293fac56b9ec7fd57ba0d5 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 21 Aug 2016 18:13:23 +0200 Subject: [PATCH] re-enable fuse tests for RemoteArchiver at some time they had deadlock issues, but it worked for me now. --- borg/testsuite/archiver.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/borg/testsuite/archiver.py b/borg/testsuite/archiver.py index 1774f347e..d67cb8792 100644 --- a/borg/testsuite/archiver.py +++ b/borg/testsuite/archiver.py @@ -1323,15 +1323,6 @@ def test_remote_repo_restrict_to_path(self): with patch.object(RemoteRepository, 'extra_test_args', ['--restrict-to-path', '/foo', '--restrict-to-path', path_prefix]): self.cmd('init', self.repository_location + '_3') - # skip fuse tests here, they deadlock since this change in exec_cmd: - # -output = subprocess.check_output(borg + args, stderr=None) - # +output = subprocess.check_output(borg + args, stderr=subprocess.STDOUT) - # this was introduced because some tests expect stderr contents to show up - # in "output" also. Also, the non-forking exec_cmd catches both, too. - @unittest.skip('deadlock issues') - def test_fuse(self): - pass - @unittest.skip('only works locally') def test_debug_put_get_delete_obj(self): pass