* tests/rm/readdir-bug: Don't use $(...) in a shell script,

as it doesn't work with Solaris /bin/sh.
This commit is contained in:
Paul Eggert 2006-09-30 00:19:29 +00:00
parent e245139e46
commit f7ecea33e4
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
* tests/rm/readdir-bug: Don't use $(...) in a shell script,
as it doesn't work with Solaris /bin/sh.
2006-09-29 Jim Meyering <jim@meyering.net>
* NEWS: Mention Paul's fix (to gnulib's canon-host.c) for

View File

@ -39,8 +39,8 @@ cd $tmp || framework_failure=1
# http://lists.gnu.org/archive/html/bug-coreutils/2006-09/msg00326.html
mkdir b || framework_failure=1
cd b || framework_failure=1
for i in $(seq 1 250); do
touch $(printf %040d $i) || framework_failure=1
for i in `seq 1 250`; do
touch `printf %040d $i` || framework_failure=1
done
cd .. || framework_failure=1