1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-14 11:21:58 +02:00

add test corresponding to today's too-many-newlines fix

This commit is contained in:
Jim Meyering
2003-04-12 19:52:33 +00:00
parent b62edfd3f9
commit b7fcd8d3ed

View File

@@ -27,12 +27,17 @@ echo b | nl -s%n >> out || fail=1
echo c | nl -n ln >> out || fail=1
echo d | nl -n rn >> out || fail=1
echo e | nl -n rz >> out || fail=1
echo === >> out
printf 'a\n\n' | nl > t || fail=1; cat -A t >> out
cat <<\EOF > exp
1 a
1%nb
1 c
1 d
000001 e
===
1^Ia$
$
EOF
cmp out exp || fail=1