fstests: convert remaining tests to SPDX license tags
[xfstests-dev.git] / tests / shared / 289
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2012 Red Hat, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 289
6 #
7 # Test overhead & df output for extN filesystems
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     cd /
21     rm -f $tmp.*
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27
28 # real QA test starts here
29
30 # Modify as appropriate.
31 _supported_fs ext2 ext3 ext4
32 _supported_os Linux
33 _require_scratch
34
35 rm -f $seqres.full
36
37 _scratch_mkfs >> $seqres.full 2>&1
38
39 # Get the honest truth about block counts straight from metadata on disk
40 TOTAL_BLOCKS=`dumpe2fs -h $SCRATCH_DEV 2>/dev/null \
41                 | awk '/Block count:/{print $3}'`
42
43 FREE_BLOCKS=`dumpe2fs -h $SCRATCH_DEV 2>/dev/null \
44                 | awk '/Free blocks:/{print $3}'`
45
46 OVERHEAD=$(($TOTAL_BLOCKS-$FREE_BLOCKS))
47
48 #  bsddf|minixdf
49 #         Set the behaviour  for  the  statfs  system  call.  The  minixdf
50 #         behaviour is to return in the f_blocks field the total number of
51 #         blocks of the filesystem, while the bsddf  behaviour  (which  is
52 #         the default) is to subtract the overhead blocks used by the ext2
53 #         filesystem and not available for file storage.
54
55 # stat -f output looks like this; we get f_blocks from that, which
56 # varies depending on the df mount options used below:
57
58 #   File: "/mnt/test"
59 #    ID: affc5f2b2f57652 Namelen: 255     Type: ext2/ext3
60 # Block size: 4096       Fundamental block size: 4096
61 # Blocks: Total: 5162741    Free: 5118725    Available: 4856465
62 # Inodes: Total: 1313760    Free: 1313749
63
64 _scratch_mount "-o minixdf"
65 MINIX_F_BLOCKS=`stat -f $SCRATCH_MNT | awk '/^Blocks/{print $3}'`
66 _scratch_unmount
67
68 _scratch_mount "-o bsddf"
69 BSD_F_BLOCKS=`stat -f $SCRATCH_MNT | awk '/^Blocks/{print $3}'`
70 _scratch_unmount
71
72 # Echo data to $seqres.full for analysis
73 echo "Overhead is $OVERHEAD blocks out of $TOTAL_BLOCKS ($FREE_BLOCKS free)" >> $seqres.full
74 echo "MINIX free blocks $MINIX_F_BLOCKS" >> $seqres.full
75 echo "BSD free blocks $BSD_F_BLOCKS" >> $seqres.full
76
77 # minix should be exactly equal (hence tolerance of 0)
78 _within_tolerance "minix f_blocks" $MINIX_F_BLOCKS $TOTAL_BLOCKS 0 -v
79 # bsd should be within ... we'll say 1% for some slop
80 _within_tolerance "bsd f_blocks" $BSD_F_BLOCKS $(($TOTAL_BLOCKS-$OVERHEAD)) 1% -v
81
82 # success, all done
83 status=0
84 exit