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/cp | |
parent | f3584c5e622d933ba7e2532ea6e6f07f8c1fc60d (diff) | |
download | coreutils-fb763e4f7a17ea1d034d1e8ad9b57bc3b217c645.tar.xz |
Use double quotes around diagnostic.
Diffstat (limited to 'tests/cp')
-rwxr-xr-x | tests/cp/backup-1 | 2 | ||||
-rwxr-xr-x | tests/cp/backup-is-src | 2 | ||||
-rwxr-xr-x | tests/cp/cp-mv-backup | 2 | ||||
-rwxr-xr-x | tests/cp/no-deref-link1 | 2 | ||||
-rwxr-xr-x | tests/cp/no-deref-link2 | 2 | ||||
-rwxr-xr-x | tests/cp/no-deref-link3 | 2 | ||||
-rwxr-xr-x | tests/cp/r-vs-symlink | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/tests/cp/backup-1 b/tests/cp/backup-1 index 3116dd165..29e36e58c 100755 --- a/tests/cp/backup-1 +++ b/tests/cp/backup-1 @@ -15,7 +15,7 @@ mkdir -p $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/cp/backup-is-src b/tests/cp/backup-is-src index 2d0e7d226..d1eb1d379 100755 --- a/tests/cp/backup-is-src +++ b/tests/cp/backup-is-src @@ -20,7 +20,7 @@ echo a > a || framework_failure=1 echo a-tilde > a~ || 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/cp/cp-mv-backup b/tests/cp/cp-mv-backup index e892d29ee..f8186df46 100755 --- a/tests/cp/cp-mv-backup +++ b/tests/cp/cp-mv-backup @@ -27,7 +27,7 @@ mkdir -p $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/cp/no-deref-link1 b/tests/cp/no-deref-link1 index 24246b6f8..780ad20b7 100755 --- a/tests/cp/no-deref-link1 +++ b/tests/cp/no-deref-link1 @@ -17,7 +17,7 @@ mkdir -p $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/cp/no-deref-link2 b/tests/cp/no-deref-link2 index 766318364..21f2867ba 100755 --- a/tests/cp/no-deref-link2 +++ b/tests/cp/no-deref-link2 @@ -17,7 +17,7 @@ mkdir -p $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/cp/no-deref-link3 b/tests/cp/no-deref-link3 index 370803f7b..c71691726 100755 --- a/tests/cp/no-deref-link3 +++ b/tests/cp/no-deref-link3 @@ -17,7 +17,7 @@ mkdir -p $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/cp/r-vs-symlink b/tests/cp/r-vs-symlink index a06409ff2..22ea7caf6 100755 --- a/tests/cp/r-vs-symlink +++ b/tests/cp/r-vs-symlink @@ -24,7 +24,7 @@ ln -s foo slink || framework_failure=1 ln -s no-such-file no-file || 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 |