diff options
author | Jim Meyering <jim@meyering.net> | 2002-10-08 09:21:08 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-10-08 09:21:08 +0000 |
commit | fb763e4f7a17ea1d034d1e8ad9b57bc3b217c645 (patch) | |
tree | d09246edabe78a9c4b537ff25232a0eaf3084d1e /tests/ls | |
parent | f3584c5e622d933ba7e2532ea6e6f07f8c1fc60d (diff) | |
download | coreutils-fb763e4f7a17ea1d034d1e8ad9b57bc3b217c645.tar.xz |
Use double quotes around diagnostic.
Diffstat (limited to 'tests/ls')
-rwxr-xr-x | tests/ls/recursive | 2 | ||||
-rwxr-xr-x | tests/ls/rt-1 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/ls/recursive b/tests/ls/recursive index a7809b45a..3b4cb7255 100755 --- a/tests/ls/recursive +++ b/tests/ls/recursive @@ -22,7 +22,7 @@ mkdir x y a b c a/1 a/2 a/3 || framework_failure=1 touch f a/1/I a/1/II || framework_failure=1 if test $framework_failure = 1; then - echo '$0: failure in testing framework' 1>&2 + echo "$0: failure in testing framework" 1>&2 (exit 1); exit fi diff --git a/tests/ls/rt-1 b/tests/ls/rt-1 index 5a4288431..66aa3ca0b 100755 --- a/tests/ls/rt-1 +++ b/tests/ls/rt-1 @@ -26,7 +26,7 @@ touch -d "$date" a || framework_failure=1 touch -d "$date" b || framework_failure=1 if test $framework_failure = 1; then - echo '$0: failure in testing framework' 1>&2 + echo "$0: failure in testing framework" 1>&2 (exit 1); exit fi |