From bf57f4af46f5a8f174cfdf60a33da497bfa87f4b Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 15 Aug 1998 03:03:44 +0000 Subject: Avoid bug in Ultrix4.3a /bin/sh, not initializing output redirection of : command. --- tests/cp/backup-is-src | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/cp/backup-is-src') 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' -- cgit v1.2.3-54-g00ecf