169e232c5a1c92b3b1ba0956a0a4054b5e09d3ec
[xfstests-dev.git] / tests / xfs / 238
1 #! /bin/bash
2 # FS QA Test No. 238
3 #
4 # Check stale handles pointing to unlinked files are detected correctly
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2010 Red Hat, 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 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 seqres=$RESULT_DIR/$seq
27 seqres=$RESULT_DIR/$seq
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     cd /
38     rm -f $tmp.*
39 }
40
41 # get standard environment, filters and checks
42 . ./common/rc
43 . ./common/filter
44
45 # real QA test starts here
46
47 # Modify as appropriate.
48 _supported_fs xfs
49 _supported_os Linux
50 _require_scratch
51
52 echo "Silence is golden"
53
54 _scratch_mkfs > /dev/null 2>&1
55 _scratch_mount > /dev/null 2>&1
56 src/stale_handle $SCRATCH_MNT
57 status=$?
58 exit