diff options
author | Jim Meyering <jim@meyering.net> | 2003-05-14 06:26:34 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-05-14 06:26:34 +0000 |
commit | 01d63f13e81d0623d753d6521076c79d355d1921 (patch) | |
tree | c1965f26944090986585ef48750d58fb794a7ad4 /tests/misc | |
parent | 00a770a30e17ee037bff676b48390bdfff466187 (diff) | |
download | coreutils-01d63f13e81d0623d753d6521076c79d355d1921.tar.xz |
Use tr's \n notation rather than \012.
Diffstat (limited to 'tests/misc')
-rwxr-xr-x | tests/misc/nice | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/nice b/tests/misc/nice index 6b2feacd6..d42f0ae5e 100755 --- a/tests/misc/nice +++ b/tests/misc/nice @@ -58,7 +58,7 @@ while :; do args=`echo x$args|tr : ' '|sed 's/^x//'` if test "$VERBOSE" = yes; then #echo "testing \`nice $args nice\` = $expected_result ..." - echo "test $test_name... " | tr -d '\012' + echo "test $test_name... " | tr -d '\n' fi test x`nice $args nice 2> /dev/null` = x$expected_result \ && ok=ok || ok=FAIL fail=1 |