1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-28 02:38:43 +00:00

fix new xattr tests for binary test runs

the tests do object patching, this does not work
when we call the external binary "borg.exe".

this made these tests fail IF the borg.exe was
available (like in the debian stretch vagrant VM).
This commit is contained in:
Thomas Waldmann 2022-01-06 23:14:55 +01:00
parent f2c975ba15
commit 8b192db076

View file

@ -3527,6 +3527,14 @@ def test_fuse(self):
else:
super().test_fuse()
@unittest.skip('patches objects')
def test_do_not_fail_when_percent_is_in_xattr_name(self):
pass
@unittest.skip('patches objects')
def test_do_not_fail_when_percent_is_in_file_name(self):
pass
class ArchiverCheckTestCase(ArchiverTestCaseBase):