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/mv | |
parent | f3584c5e622d933ba7e2532ea6e6f07f8c1fc60d (diff) | |
download | coreutils-fb763e4f7a17ea1d034d1e8ad9b57bc3b217c645.tar.xz |
Use double quotes around diagnostic.
Diffstat (limited to 'tests/mv')
-rwxr-xr-x | tests/mv/dup-source | 2 | ||||
-rwxr-xr-x | tests/mv/i-link-no | 2 | ||||
-rwxr-xr-x | tests/mv/part-fail | 2 | ||||
-rwxr-xr-x | tests/mv/part-rename | 2 | ||||
-rwxr-xr-x | tests/mv/perm-1 | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/tests/mv/dup-source b/tests/mv/dup-source index 350be1146..402853828 100755 --- a/tests/mv/dup-source +++ b/tests/mv/dup-source @@ -24,7 +24,7 @@ mkdir $tmp || framework_failure=1 cd $tmp || 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/mv/i-link-no b/tests/mv/i-link-no index ec5c7ba2d..ed72164ab 100755 --- a/tests/mv/i-link-no +++ b/tests/mv/i-link-no @@ -25,7 +25,7 @@ ln b/FUBAR b/bar || framework_failure=1 chmod a-w b/bar || 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/mv/part-fail b/tests/mv/part-fail index b512db7f0..09d29df50 100755 --- a/tests/mv/part-fail +++ b/tests/mv/part-fail @@ -31,7 +31,7 @@ touch k $other_partition_tmpdir/k || framework_failure=1 chmod u-w $other_partition_tmpdir || 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/mv/part-rename b/tests/mv/part-rename index 9ce1e89df..e908c55c8 100755 --- a/tests/mv/part-rename +++ b/tests/mv/part-rename @@ -27,7 +27,7 @@ cd $tmp || framework_failure=1 mkdir foo || 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/mv/perm-1 b/tests/mv/perm-1 index 9a821bc22..4f00690b8 100755 --- a/tests/mv/perm-1 +++ b/tests/mv/perm-1 @@ -23,7 +23,7 @@ mkdir -p no-write/dir || framework_failure=1 chmod u-w no-write || 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 |