--- a/tests/test-largefiles-small-disk.t Thu Feb 23 04:53:34 2023 +0100
+++ b/tests/test-largefiles-small-disk.t Thu Feb 23 15:37:46 2023 +0100
@@ -10,7 +10,7 @@
> _origcopyfileobj = shutil.copyfileobj
> def copyfileobj(fsrc, fdst, length=16 * 1024):
> # allow journal files (used by transaction) to be written
- > if b'journal.' in fdst.name:
+ > if b'journal.' in fdst.name or b'backup.' in fdst.name:
> return _origcopyfileobj(fsrc, fdst, length)
> fdst.write(fsrc.read(4))
> raise IOError(errno.ENOSPC, os.strerror(errno.ENOSPC))