diff options
author | Jim Meyering <jim@meyering.net> | 1998-08-15 03:03:44 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-08-15 03:03:44 +0000 |
commit | bf57f4af46f5a8f174cfdf60a33da497bfa87f4b (patch) | |
tree | 7f66c5e0ee66bd8b41f868c03254d6025d056c5d /tests/cp | |
parent | dc43a7bb607584b13988e8a40a8da7740de334cc (diff) | |
download | coreutils-bf57f4af46f5a8f174cfdf60a33da497bfa87f4b.tar.xz |
Avoid bug in Ultrix4.3a /bin/sh,
not initializing output redirection of : command.
Diffstat (limited to 'tests/cp')
-rwxr-xr-x | tests/cp/backup-is-src | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cp/backup-is-src b/tests/cp/backup-is-src index 5faebc6b2..f2eaa090e 100755 --- a/tests/cp/backup-is-src +++ b/tests/cp/backup-is-src @@ -10,8 +10,8 @@ fi framework_failure=0 $RM -f a a~ || framework_failure=1 -: > a || framework_failure=1 -echo a > a~ || framework_failure=1 +echo a > a || framework_failure=1 +echo a-tilde > a~ || framework_failure=1 if test $framework_failure = 1; then echo 'failure in testing framework' |