xfstests: remove 285.full and 286.full
[xfstests-dev.git] / 100
1 #! /bin/bash
2 # FS QA Test No. 100. 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 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms 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,
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 the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #
23 #-----------------------------------------------------------------------
24 #
25
26 seq=`basename $0`
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 15
33
34 # get standard environment, filters and checks
35 . ./common.rc
36 . ./common.filter
37
38 _cleanup()
39 {
40      rm -f $tmp.* $testfile
41 }
42  
43 # real QA test starts here
44 _supported_fs generic
45 _supported_os IRIX Linux
46
47 # Use _populate_fs() in common.rc to create a directory structure.
48 TEMP_DIR=/tmp
49 [ "$FSTYP" == "xfs" ] && TEMP_DIR=$TEST_DIR
50 TAR_FILE=temp.tar
51 NDIRS=3
52 NFILES=6
53 DEPTH=5
54 POPULATED_DIR=$TEMP_DIR/populate_root
55 SIZE=10
56
57 rm -f $seq.full
58
59 # Clean up if file exist from prevous run
60 rm -rf $POPULATED_DIR
61 rm -f $TEMP_DIR/$TAR_FILE
62
63 # Create the new directory structure
64 _populate_fs -n $NDIRS -f $NFILES -d $DEPTH -r $POPULATED_DIR -s $SIZE >>$here/$seq.full 2>&1
65
66 # Then tar up the directory structure
67 tar -cvf $TEMP_DIR/$TAR_FILE $POPULATED_DIR >>$here/$seq.full 2>&1
68
69 # create f/s
70 _require_scratch
71 _setup_testdir
72
73 # untar on f/s
74 cd $testdir
75 tar -xRvf $TEMP_DIR/$TAR_FILE >>$here/$seq.full 2>&1
76 cd $here
77
78
79 # use diff -qr to compare
80 ls -R -l ${testdir}${POPULATED_DIR} >>$here/$seq.full 2>&1
81 diff -qr $POPULATED_DIR ${testdir}${POPULATED_DIR}
82
83 cd /
84 _cleanup_testdir
85 _check_scratch_fs
86
87 status=0
88 exit