testsuite: uniformly use $ECHO with -n -e

This commit is contained in:
Denis Vlasenko
2008-07-11 21:41:14 +00:00
parent 94884eb486
commit abe49fa54f
9 changed files with 691 additions and 690 deletions

View File

@ -1,4 +1,4 @@
echo -ne "abc\ndef\n123\n" >input
echo -ne "def\n123\n" >logfile.ok
$ECHO -ne "abc\ndef\n123\n" >input
$ECHO -ne "def\n123\n" >logfile.ok
busybox tail -n 2 input > logfile.bb
cmp logfile.ok logfile.bb

View File

@ -1,4 +1,4 @@
echo -ne "abc\ndef\n123\n" >input
echo -ne "def\n123\n" >logfile.ok
$ECHO -ne "abc\ndef\n123\n" >input
$ECHO -ne "def\n123\n" >logfile.ok
busybox tail -2 input > logfile.bb
cmp logfile.ok logfile.bb