tests/test-largefiles-small-disk.t
changeset 50195 11e6eee4b063
parent 48876 42d2b31cee0b
--- 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))