unblock replace trailing spaces in cbs-size records with newline\n\
lcase change upper case to lower case\n\
ucase change lower case to upper case\n\
- sparse try to seek rather than write the output for NUL input blocks\n\
+ sparse try to seek rather than write all-NUL output blocks\n\
swab swap every pair of input bytes\n\
sync pad every input block with NULs to ibs-size; when used\n\
with block or unblock, pad with spaces rather than NULs\n\
# after its creation.
if test $(kb_alloc file.in) -gt 3000; then
- # Ensure NUL blocks smaller than the block size are not made sparse.
+ # Ensure NUL blocks smaller than the *output* block size are not made sparse.
# Here, with a 2MiB block size, dd's conv=sparse must *not* introduce a hole.
- dd if=file.in of=file.out bs=2M conv=sparse || fail=1
+ dd if=file.in of=file.out ibs=1M obs=2M conv=sparse || fail=1
# Intermittently BTRFS returns 0 allocation for file.out unless synced
sync file.out || framework_failure_
rm -f file.out
truncate --size=3M file.out
- # Ensure that this 1MiB string of NULs *is* converted to a hole.
- dd if=file.in of=file.out bs=1M conv=sparse,notrunc
+ # Ensure that this 1MiB *output* block of NULs *is* converted to a hole.
+ dd if=file.in of=file.out ibs=2M obs=1M conv=sparse,notrunc
test $(kb_alloc file.out) -lt 2500 || fail=1
fi