Avoid bug in Ultrix4.3a /bin/sh,
authorJim Meyering <jim@meyering.net>
Sat, 15 Aug 1998 03:03:44 +0000 (03:03 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 15 Aug 1998 03:03:44 +0000 (03:03 +0000)
not initializing output redirection of : command.

tests/cp/backup-is-src

index 5faebc6..f2eaa09 100755 (executable)
@@ -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'