2a44121914128e9acf6eaea98c1372d231157deb
[xfstests-dev.git] / 153
1 #! /bin/sh
2 #
3 #-----------------------------------------------------------------------
4 # Copyright (c) 2006 Silicon Graphics, Inc.  All Rights Reserved.
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation.
9 #
10 # This program is distributed in the hope that it would be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write the Free Software Foundation,
17 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 #
19 #-----------------------------------------------------------------------
20 #
21 # FSQA Test No. 153
22 #
23 # Associate filesystem with a session by setting DMAPI DM_EVENT_RENAME
24 # disposition.
25 #
26 # creator
27 owner=allanr@sgi.com
28
29 seq=`basename $0`
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34 status=1    # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 _cleanup()
38 {
39     _cleanup_testdir
40 }
41
42 # get standard environment, filters and checks
43 . ./common.rc
44 . ./common.filter
45 . ./common.dmapi
46
47 # real QA test starts here
48 _supported_fs xfs
49 _supported_os Linux IRIX
50
51 _require_scratch
52 _scratch_mkfs_xfs >/dev/null 2>&1
53 _dmapi_scratch_mount
54
55 DMAPI_FS_HANDLE="`${DMAPI_QASUITE1_DIR}cmd/path_to_fshandle $SCRATCH_MNT`"
56
57 echo "*** create DMAPI sessions"
58 eval `${DMAPI_QASUITE1_DIR}../simple/dm_create_session`
59 sid1=$newsid
60 eval `${DMAPI_QASUITE1_DIR}../simple/dm_create_session`
61 sid2=$newsid
62
63 ${DMAPI_QASUITE1_DIR}cmd/set_disp -s $sid1 $DMAPI_FS_HANDLE DM_EVENT_RENAME
64 ${DMAPI_QASUITE1_DIR}cmd/getall_disp $sid1 | $PERL_PROG -ne "s/fshandle\s+[0-9|a-f]+/fshandle FS_HANDLE/; print"
65 ${DMAPI_QASUITE1_DIR}cmd/getall_disp $sid2
66
67 echo "*** destroy DMAPI sessions"
68 ${DMAPI_QASUITE1_DIR}../simple/dm_destroy_session -s $sid1
69 ${DMAPI_QASUITE1_DIR}../simple/dm_destroy_session -s $sid2
70
71 status=0
72 exit