The test writes to the disk and means the space used changes. If this
crosses a number boundary, the heading spacing can change:
-Filesystem 1024-blocks Used Available Capacity Mounted on
+Filesystem 1024-blocks Used Available Capacity Mounted on
* tests/df/df-P.sh: Squash spaces with tr to avoid alignment variations.
# while for 1K, it would be
# Filesystem 1024-blocks Used Available Capacity Mounted on
-head -n1 t1 > exp || fail=1
-head -n1 t2 > out || fail=1
+head -n1 t1 | tr -s ' ' > exp || framework_failure_
+head -n1 t2 | tr -s ' ' > out || framework_failure_
compare exp out || fail=1