Index: tests/misc/nice
===================================================================
RCS file: /cvsroot/coreutils/coreutils/tests/misc/nice,v
retrieving revision 1.2
diff -u -r1.2 nice
--- tests/misc/nice	14 May 2003 06:26:52 -0000	1.2
+++ tests/misc/nice	26 Apr 2005 16:28:39 -0000
@@ -29,7 +29,7 @@
 19 --1:-12 12
 NA LAST NA
 '
-set - $tests
+set $tests
 
 if test "$VERBOSE" = yes; then
   nice --version
Index: tests/mkdir/perm
===================================================================
RCS file: /cvsroot/coreutils/coreutils/tests/mkdir/perm,v
retrieving revision 1.16
diff -u -r1.16 perm
--- tests/mkdir/perm	22 Apr 2005 23:54:05 -0000	1.16
+++ tests/mkdir/perm	26 Apr 2005 16:28:39 -0000
@@ -49,7 +49,7 @@
 
   old_IFS=$IFS
   IFS=':'
-  set - `(echo "$tests"|tr -d '\n'; echo)|sed 's/^ *//;s/ *:/:/g;s/: */:/g'`
+  set `(echo "$tests"|tr -d '\n'; echo)|sed 's/^ *//;s/ *:/:/g;s/: */:/g'`
   IFS=$old_IFS
 
   while :; do
@@ -73,10 +73,12 @@
 
     perms=`ls -ld parent | sed 's/ .*//'`
     test "$parent_perms" = "$perms" \
+      || test "$parent_perms"+ = "$perms" \
       || { fail=1; echo parent: expected $parent_perms, got $perms; }
 
     perms=`ls -ld parent/sub | sed 's/ .*//'`
     test "$sub_perms" = "$perms" \
+      || test "$sub_perms"+ = "$perms" \
       || { fail=1; echo parent/sub: expected $sub_perms, got $perms; }
 
     chmod -R u+rwx parent
Index: tests/mv/part-hardlink
===================================================================
RCS file: /cvsroot/coreutils/coreutils/tests/mv/part-hardlink,v
retrieving revision 1.2
diff -u -r1.2 part-hardlink
--- tests/mv/part-hardlink	23 Jun 2004 15:07:04 -0000	1.2
+++ tests/mv/part-hardlink	26 Apr 2005 16:28:39 -0000
@@ -42,9 +42,9 @@
 mv a b $other_partition_tmpdir || fail=1
 
 cd $other_partition_tmpdir
-set - `ls -Ci f g`
+set `ls -Ci f g`
 test $1 = $3 || fail=1
-set - `ls -Ci a/1 b/1`
+set `ls -Ci a/1 b/1`
 test $1 = $3 || fail=1
 
 (exit $fail); exit $fail
Index: tests/stty/row-col-1
===================================================================
RCS file: /cvsroot/coreutils/coreutils/tests/stty/row-col-1,v
retrieving revision 1.10
diff -u -r1.10 row-col-1
--- tests/stty/row-col-1	3 Jan 2005 21:25:13 -0000	1.10
+++ tests/stty/row-col-1	26 Apr 2005 16:28:39 -0000
@@ -36,7 +36,7 @@
 9 rows_30 30_80
 NA LAST NA
 '
-set - $tests
+set $tests
 
 saved_size=.saved-size
 
