xfstests: kill useless test owner fields
[xfstests-dev.git] / 002
1 #! /bin/bash
2 # FS QA Test No. 002
3 #
4 # simple inode link count test for a regular file
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2001 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 echo "QA output created by $seq"
27
28 # get standard environment, filters and checks
29 . ./common.rc
30 . ./common.filter
31
32 tmp=/tmp/$$
33 here=`pwd`
34 status=0        # success is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 _cleanup()
38 {
39     rm -f $tmp.*
40     _cleanup_testdir
41 }
42
43 # real QA test starts here
44 _supported_fs generic
45 _supported_os IRIX Linux
46
47 _setup_testdir
48
49 echo "Silence is goodness ..."
50
51 # ensure target directory exists
52 mkdir `dirname $testdir/$tmp` 2>/dev/null
53
54 touch $testdir/$tmp.1
55 for l in 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
56 do
57     ln $testdir/$tmp.1 $testdir/$tmp.$l
58     x=`src/lstat64 $testdir/$tmp.1 | sed -n -e '/ Links: /s/.*Links: *//p'`
59     if [ "$l" -ne $x ]
60     then
61         echo "Arrgh, created link #$l and lstat64 looks like ..."
62         src/lstat64 $testdir/$tmp.1
63         status=1
64     fi
65 done
66
67 for l in 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1
68 do
69     x=`src/lstat64 $testdir/$tmp.1 | sed -n -e '/ Links: /s/.*Links: *//p'`
70     if [ "$l" -ne $x ]
71     then
72         echo "Arrgh, about to remove link #$l and lstat64 looks like ..."
73         src/lstat64 $testdir/$tmp.1
74         status=1
75     fi
76     rm -f $testdir/$tmp.$l
77 done
78
79 # success, all done
80 exit