common: kill _supported_os
[xfstests-dev.git] / tests / xfs / 047
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2000-2001 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 047
6 #
7 # invutil with interactive responses
8 #
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1        # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20         _cleanup_dump
21         cd /
22         rm -f $tmp.*
23 }
24
25 # get standard environment, filters and checks
26 . ./common/rc
27 . ./common/dump
28
29 # real QA test starts here
30 _supported_fs xfs
31
32 # wipe test dir clean first
33 # so dump can be real quick
34 _wipe_fs
35
36 #
37 # Create 5 dumps
38 # and on the 3rd dump note the date
39 # which we'll use to prune against using xfsinvutil
40 #
41 i=0
42 while [ $i -lt 5 ]; do
43     _do_dump_file -L "session.$i"
44     if [ $i -eq 2 ]; then
45        sleep 1
46        middate=`date '+%m/%d/%Y %T'`
47     fi
48     rm $dump_file
49     sleep 2
50     let i=$i+1
51 done
52
53 echo "middate = $middate" >>$seqres.full
54
55 # Only say No to 1st question to prune
56 cat >$tmp.input <<EOF
57 N
58 Y
59 Y
60 Y
61 Y
62 EOF
63
64 #
65 # Now do the xfsinvutil and
66 # look and the inventory before and after
67 # to see if it did the job
68 #
69 _dump_inventory
70 _do_invutil <$tmp.input
71 _dump_inventory
72
73 status=0
74 exit