Use test dir for XFS runs, not localhost /tmp dir.
[xfstests-dev.git] / 002
1 #! /bin/sh
2 #
3 # FS QA Test No. 002
4 #
5 # simple inode link count test for a regular file
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2001 Silicon Graphics, Inc.  All Rights Reserved.
9
10 # This program is free software; you can redistribute it and/or modify it
11 # under the terms of version 2 of the GNU General Public License as
12 # published by the Free Software Foundation.
13
14 # This program is distributed in the hope that it would be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18 # Further, this software is distributed without any warranty that it is
19 # free of the rightful claim of any third person regarding infringement
20 # or the like.  Any license provided herein, whether implied or
21 # otherwise, applies only to this software file.  Patent licenses, if
22 # any, provided herein do not apply to combinations of this program with
23 # other software, or any other product whatsoever.
24
25 # You should have received a copy of the GNU General Public License along
26 # with this program; if not, write the Free Software Foundation, Inc., 59
27 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
28
29 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
30 # Mountain View, CA  94043, or:
31
32 # http://www.sgi.com 
33
34 # For further information regarding this notice, see: 
35
36 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
37 #-----------------------------------------------------------------------
38 #
39 # creator
40 owner=kenmcd@sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 # get standard environment, filters and checks
46 . ./common.rc
47 . ./common.filter
48
49 tmp=/tmp/$$
50 here=`pwd`
51 status=0        # success is the default!
52 trap "_cleanup; exit \$status" 0 1 2 3 15
53
54 _cleanup()
55 {
56     rm -f $tmp.*
57     _cleanup_testdir
58 }
59
60 # real QA test starts here
61 _supported_fs xfs udf nfs
62 _supported_os IRIX Linux
63
64 _setup_testdir
65
66 echo "Silence is goodness ..."
67
68 # ensure target directory exists
69 mkdir `dirname $testdir/$tmp` 2>/dev/null
70
71 touch $testdir/$tmp.1
72 for l in 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
73 do
74     ln $testdir/$tmp.1 $testdir/$tmp.$l
75     x=`src/lstat64 $testdir/$tmp.1 | sed -n -e '/ Links: /s/.*Links: *//p'`
76     if [ "$l" -ne $x ]
77     then
78         echo "Arrgh, created link #$l and lstat64 looks like ..."
79         src/lstat64 $testdir/$tmp.1
80         status=1
81     fi
82 done
83
84 for l in 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1
85 do
86     x=`src/lstat64 $testdir/$tmp.1 | sed -n -e '/ Links: /s/.*Links: *//p'`
87     if [ "$l" -ne $x ]
88     then
89         echo "Arrgh, about to remove link #$l and lstat64 looks like ..."
90         src/lstat64 $testdir/$tmp.1
91         status=1
92     fi
93     rm -f $testdir/$tmp.$l
94 done
95
96 # success, all done
97 exit