diff options
author | Jim Meyering <jim@meyering.net> | 2000-05-20 08:11:51 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-05-20 08:11:51 +0000 |
commit | 396069fce5d92da041cde4da12527192786fe798 (patch) | |
tree | 0b7de1ca191f47b32b7056b4589037ce19a6c27f /tests | |
parent | a5c0da5365e118dc9de18d3d53dfa95e1dd79586 (diff) | |
download | coreutils-396069fce5d92da041cde4da12527192786fe798.tar.xz |
reorder so as not to use `head -c N'
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/rm/hash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rm/hash b/tests/rm/hash index 049d49e87..d57cf4d4b 100755 --- a/tests/rm/hash +++ b/tests/rm/hash @@ -19,7 +19,7 @@ cd $tmp # Create a hierarchy with 3*26 leaf directories, each at depth 153. echo "$0: creating 78 trees, each of depth 153; this will take a while..." >&2 -y=`yes |tr '\012' / |head -c 300` +y=`yes |head -150 |tr '\012' /` for i in 1 2 3; do for j in a b c d e f g h i j k l m n o p q r s t u v w x y z; do mkdir -p t/$i/$j/$y || framework_failure=1 |