From c39e395ecf68e685aa6131860a300bc4d1801734 Mon Sep 17 00:00:00 2001 From: Marian Beermann Date: Wed, 17 Aug 2016 23:01:20 +0200 Subject: [PATCH] Exclude incompatible tests for ArchiverTestCaseBinary --- src/borg/testsuite/archiver.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/borg/testsuite/archiver.py b/src/borg/testsuite/archiver.py index bd26eeb98..0d4a5441b 100644 --- a/src/borg/testsuite/archiver.py +++ b/src/borg/testsuite/archiver.py @@ -1204,7 +1204,6 @@ class ArchiverTestCase(ArchiverTestCaseBase): test_archive = self.repository_location + '::test' self.cmd('create', test_archive, src_dir) self.cmd('list', '--list-format', '-', test_archive) - self.archiver.exit_code = 0 # reset exit code for following tests output_1 = self.cmd('list', test_archive) output_2 = self.cmd('list', '--format', '{mode} {user:6} {group:6} {size:8d} {isomtime} {path}{extra}{NEWLINE}', test_archive) output_3 = self.cmd('list', '--format', '{mtime:%s} {path}{NL}', test_archive) @@ -1772,6 +1771,10 @@ class ArchiverTestCaseBinary(ArchiverTestCase): def test_recreate_interrupt(self): pass + @unittest.skip('patches objects') + def test_recreate_interrupt2(self): + pass + @unittest.skip('patches objects') def test_recreate_changed_source(self): pass