Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / rm / r-3
1 #!/bin/sh
2 # Create and remove a directory with more than 254 files.
3
4 # Copyright (C) 1997, 2001, 2002, 2003, 2004, 2006 Free Software Foundation,
5 # Inc.
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 # 02110-1301, USA.
21
22
23 # An early version of my rewritten rm failed to remove all of
24 # the files on SunOS4 when there were 254 or more in a directory.
25
26 # And the rm from coreutils-5.0 exposes the same problem when there
27 # are 338 or more files in a directory on a Darwin-6.5 system
28
29 if test "$VERBOSE" = yes; then
30   rm --version
31   set -x
32 fi
33
34 pwd=`pwd`
35 t0=`echo "$0"|sed 's,.*/,,'`.tmp;tmp=$t0/$$
36 trap 'status=$?; cd "$pwd" && rm -rf $t0 && exit $status' 0
37 trap '(exit $?); exit' 1 2 13 15
38
39 framework_fail=0
40 mkdir -p $tmp || framework_fail=1
41 cd $tmp || framework_fail=1
42
43 # Create 500 files (20 * 25).
44 for i in 0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j; do
45   files=
46   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; do
47     files="$files $i$j"
48   done
49   touch $files || framework_fail=1
50 done
51
52 test -f 0a || framework_fail=1
53 test -f by || framework_fail=1
54 cd "$pwd" || framework_fail=1
55
56 if test $framework_fail = 1; then
57   echo 'failure in testing framework'
58   (exit 1); exit 1
59 fi
60
61 fail=0
62 rm -rf $tmp || fail=1
63 test -d $tmp && fail=1
64
65 (exit $fail); exit $fail