summaryrefslogtreecommitdiff
path: root/tests/xfs/020
blob: d6ee3a1572ee804e4232db0ba2146d2e3a7349b6 (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
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2014 Red Hat Inc.  All Rights Reserved.
#
# FS QA Test No. xfs/020
#
# Test segfault issue when repairing large xfs.
#
# Regression test for xfsprogs commit
# 7f2d6b8 xfs_repair: avoid segfault if reporting progress early in repair
#
. ./common/preamble
_begin_fstest auto repair

# Override the default cleanup function.
_cleanup()
{
    cd /
    rm -f $tmp.*
    rm -f $fsfile
}

# Import common functions.
. ./common/filter

# real QA test starts here
_supported_fs xfs
_require_test

# Writing a 60t fs requires about 2GB of space, so make sure
# we have plenty of space to do that.
_require_fs_space $TEST_DIR 2500000

echo "Silence is golden"

fsfile=$TEST_DIR/fsfile.$seq
rm -f $fsfile
# The actual truncate command is required here (and not xfs_io) because it
# returns nonzero if the operation fails.
truncate -s 60t $fsfile || _notrun "Cannot create 60T sparse file for test."
rm -f $fsfile

$MKFS_PROG -t xfs -d size=60t,file,name=$fsfile >/dev/null
$XFS_REPAIR_PROG -f -o ag_stride=32 -t 1 $fsfile >/dev/null 2>&1

status=$?
exit