Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / rm / deep-1
1 #!/bin/sh
2 # Test "rm" with a deep hierarchy.
3
4 # Copyright (C) 1997, 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 # This is a bit of a torture test for mkdir -p, too.
23 # GNU rm performs *much* better on systems that have a d_type member
24 # in the directory structure because then it does only one stat per
25 # command line argument.
26
27 # If this test takes too long on your system, blame the OS.
28
29 if test "$VERBOSE" = yes; then
30   set -x
31   rm --version
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 umask 022
40
41 fail=0
42
43 k20=/k/k/k/k/k/k/k/k/k/k/k/k/k/k/k/k/k/k/k/k
44 k200=$k20$k20$k20$k20$k20$k20$k20$k20$k20$k20
45
46 # Be careful not to exceed max file name length (usu 512?).
47 # Doing so wouldn't affect GNU mkdir or GNU rm, but any tool that
48 # operates on the full pathname (like `test') would choke.
49 k_deep=$k200$k200
50
51 # Create a directory in $tmp with lots of `k' components.
52 deep=$tmp$k_deep
53 mkdir -p $deep || fail=1
54
55 # Make sure the deep dir was created.
56 test -d $deep || fail=1
57
58 rm -r $tmp || fail=1
59
60 # Make sure all of $tmp was deleted.
61 test -d $tmp && fail=1
62
63 (exit $fail); exit $fail