common/rc: factor out _scratch_xfs_[get|set]_sb_field
[xfstests-dev.git] / tests / xfs / 262
1 #! /bin/bash
2 # FS QA Test No. 262
3 #
4 # Copy xfs_scrub to the scratch device, then run xfs_scrub in forced
5 # repair mode (which will rebuild the data forks of the running scrub
6 # executable and libraries!) to see what happens.
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2017 Oracle, Inc.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1335  USA
23 #-----------------------------------------------------------------------
24 #
25
26 seq=`basename $0`
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 7 15
34
35 _cleanup()
36 {
37         cd /
38         rm -rf $tmp.*
39 }
40
41 # get standard environment, filters and checks
42 . ./common/rc
43 . ./common/filter
44 . ./common/fuzzy
45 . ./common/inject
46
47 # real QA test starts here
48 _supported_os Linux
49 _supported_fs xfs
50 _require_command "$LDD_PROG" ldd
51 _require_scrub
52 _require_scratch
53 # xfs_scrub will turn on error injection itself
54 _require_xfs_io_error_injection "force_repair"
55
56 echo "Format and populate"
57 _scratch_mkfs > "$seqres.full" 2>&1
58 _scratch_mount
59 cp $XFS_SCRUB_PROG $SCRATCH_MNT/xfs_scrub
60 $LDD_PROG $XFS_SCRUB_PROG | sed -e '/\//!d;/linux-gate/d;/=>/ {s/.*=>[[:blank:]]*\([^[:blank:]]*\).*/\1/};s/[[:blank:]]*\([^[:blank:]]*\) (.*)/\1/' | while read lib; do
61         cp $lib $SCRATCH_MNT/
62 done
63 LD_LIBRARY_PATH=$SCRATCH_MNT $LDD_PROG $SCRATCH_MNT/xfs_scrub >> $seqres.full
64
65 echo "Force online repairs"
66 XFS_SCRUB_FORCE_REPAIR=1 LD_LIBRARY_PATH=$SCRATCH_MNT $SCRATCH_MNT/xfs_scrub -dTvy $SCRATCH_MNT >> $seqres.full
67
68 # success, all done
69 status=0
70 exit