From 62d8762eb7cdb495f00d8473117b61857beaf5ca Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 9 May 2026 00:47:04 +0200 Subject: [PATCH] fixed_test: remove commented-out skipif decorator The @pytest.mark.skipif(not fs_supports_sparse(), ...) decorator on test_chunkify_sparse was commented out and is not needed because the zeros.startswith(result) fix in FileReader.read() detects zero-filled slices as CH_ALLOC regardless of sparse FS support, and ChunkerFixed with sparse=True gracefully falls back when SEEK_HOLE/SEEK_DATA is not available. --- src/borg/testsuite/chunkers/fixed_test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/borg/testsuite/chunkers/fixed_test.py b/src/borg/testsuite/chunkers/fixed_test.py index 3bf78b809..8b8e628ef 100644 --- a/src/borg/testsuite/chunkers/fixed_test.py +++ b/src/borg/testsuite/chunkers/fixed_test.py @@ -40,7 +40,6 @@ def pretty_print(msg, items): print(f"???({item})") -# @pytest.mark.skipif(not fs_supports_sparse(), reason="filesystem does not support sparse files") @pytest.mark.parametrize( "fname, sparse_map, header_size, sparse", [