blob: 9f6dbeb828d5f3b4c1878a50d55bb209982bb335 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2021 Red Hat, Inc. All Rights Reserved.
#
# FS QA Test No. 163
#
# XFS shrinkfs basic functionality test
#
# This test attempts to shrink with a small size (512K), half AG size and
# an out-of-bound size (agsize + 1) to observe if it works as expected.
#
. ./common/preamble
_begin_fstest auto quick growfs shrinkfs
# Import common functions.
. ./common/filter
test_shrink()
{
$XFS_GROWFS_PROG -D"$1" $SCRATCH_MNT >> $seqres.full 2>&1
ret=$?
_scratch_unmount
_check_scratch_fs
_scratch_mount
$XFS_INFO_PROG $SCRATCH_MNT 2>&1 | _filter_mkfs 2>$tmp.growfs >/dev/null
. $tmp.growfs
[ $ret -eq 0 -a $1 -eq $dblocks ]
}
# real QA test starts here
_supported_fs xfs
_require_scratch_xfs_shrink
echo "Format and mount"
# agcount = 1 is forbidden on purpose, and need to ensure shrinking to
# 2 AGs isn't feasible yet. So agcount = 3 is the minimum number now.
_scratch_mkfs -dsize="$((512 * 1024 * 1024))" -dagcount=3 2>&1 | \
tee -a $seqres.full | _filter_mkfs 2>$tmp.mkfs >/dev/null
. $tmp.mkfs
t_dblocks=$dblocks
_scratch_mount >> $seqres.full
echo "Shrink fs (small size)"
test_shrink $((t_dblocks-512*1024/dbsize)) || \
echo "Shrink fs (small size) failure"
echo "Shrink fs (half AG)"
test_shrink $((t_dblocks-agsize/2)) || \
echo "Shrink fs (half AG) failure"
echo "Shrink fs (out-of-bound)"
test_shrink $((t_dblocks-agsize-1)) && \
echo "Shrink fs (out-of-bound) failure"
[ $dblocks -ne $((t_dblocks-agsize/2)) ] && \
echo "dblocks changed after shrinking failure"
$XFS_INFO_PROG $SCRATCH_MNT >> $seqres.full
echo "*** done"
# success, all done
status=0
exit
|