b8ffbdbf39b4f222b708ca44124e53f134340fdb
[xfstests-dev.git] / 100
1 #! /bin/sh
2 # FS QA Test No. 093. Modified from UDF QA test 030.
3 #
4 # Test whether a tarred directory structure can be untarred onto
5 # a UDF file system.
6
7 #-----------------------------------------------------------------------
8 #  Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
9 #  This program is free software; you can redistribute it and/or modify
10 #  it under the terms of the GNU General Public License as published by
11 #  the Free Software Foundation; either version 2 of the License, or
12 #  (at your option) any later version.
13 #
14 #  This program is distributed in the hope that it will be useful,
15 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 #  GNU General Public License for more details.
18 #
19 #  You should have received a copy of the GNU General Public License
20 #  along with this program; if not, write to the Free Software
21 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
22 #  USA
23 #
24 #  Contact information: Silicon Graphics, Inc., 1500 Crittenden Lane,
25 #  Mountain View, CA 94043, USA, or: http://www.sgi.com
26 #-----------------------------------------------------------------------
27 #
28 # creator
29 owner=ajones@sgi.com
30
31 seq=`basename $0`
32 echo "QA output created by $seq"
33
34 here=`pwd`
35 tmp=/tmp/$$
36 status=1        # failure is the default!
37 trap "_cleanup; exit \$status" 0 1 2 3 15
38
39 # get standard environment, filters and checks
40 . ./common.rc
41 . ./common.filter
42
43 _cleanup()
44 {
45      rm -f $tmp.* $testfile
46 }
47  
48 # real QA test starts here
49 _supported_fs xfs udf nfs
50 _supported_os IRIX Linux
51
52 # Use _populate_fs() in common.rc to create a directory structure.
53 TEMP_DIR=/tmp
54 [ "$FSTYP" == "xfs" ] && TEMP_DIR=$TEST_DIR
55 TAR_FILE=temp.tar
56 NDIRS=3
57 NFILES=6
58 DEPTH=5
59 POPULATED_DIR=$TEMP_DIR/populate_root
60 SIZE=10
61
62 rm -f $seq.full
63
64 # Clean up if file exist from prevous run
65 rm -rf $POPULATED_DIR
66 rm -f $TEMP_DIR/$TAR_FILE
67
68 # Create the new directory structure
69 _populate_fs -n $NDIRS -f $NFILES -d $DEPTH -r $POPULATED_DIR -s $SIZE >>$here/$seq.full 2>&1
70
71 # Then tar up the directory structure
72 tar -cvf $TEMP_DIR/$TAR_FILE $POPULATED_DIR >>$here/$seq.full 2>&1
73
74 # create f/s
75 _require_scratch
76 _setup_testdir
77
78 # untar on f/s
79 cd $testdir
80 tar -xRvf $TEMP_DIR/$TAR_FILE >>$here/$seq.full 2>&1
81 cd $here
82
83
84 # use diff -qr to compare
85 ls -R -l ${testdir}${POPULATED_DIR} >>$here/$seq.full 2>&1
86 diff -qr $POPULATED_DIR ${testdir}${POPULATED_DIR}
87
88 cd /
89 _cleanup_testdir
90 _check_scratch_fs
91
92 status=0
93 exit