mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
xfs: Add test for too-small device with stripe geometry
Verify hat an attempt to create a too-small device with stripe geometry, is handled gracefully instead of hitting an assert in align_ag_geometry() Signed-off-by: Pavel Reichl <preichl@redhat.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
This commit is contained in:
Executable
+51
@@ -0,0 +1,51 @@
|
||||
#! /bin/bash
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (c) 2020 Red Hat, Inc.. All Rights Reserved.
|
||||
#
|
||||
# FS QA Test 260
|
||||
#
|
||||
# Verify that an attempt to create a too-small device with stripe geometry,
|
||||
# is handled gracefully instead of hitting an assert in align_ag_geometry()
|
||||
#
|
||||
# This test verifies the problem fixed in xfsprogs with commit
|
||||
# (mkfs.xfs: fix ASSERT on too-small device with stripe geometry)
|
||||
#
|
||||
|
||||
seq=`basename $0`
|
||||
seqres=$RESULT_DIR/$seq
|
||||
echo "QA output created by $seq"
|
||||
|
||||
here=`pwd`
|
||||
tmp=/tmp/$$
|
||||
status=1 # failure is the default!
|
||||
trap "_cleanup; exit \$status" 0 1 2 3 15
|
||||
|
||||
_cleanup()
|
||||
{
|
||||
cd /
|
||||
rm -f $tmp.*
|
||||
rm -f $localfile
|
||||
}
|
||||
|
||||
# get standard environment, filters and checks
|
||||
. ./common/rc
|
||||
|
||||
# remove previous $seqres.full before test
|
||||
rm -f $seqres.full
|
||||
|
||||
echo 'Silence is golden'
|
||||
|
||||
_supported_fs xfs
|
||||
_require_test
|
||||
|
||||
localfile=$TEST_DIR/$seq.$$
|
||||
|
||||
$XFS_IO_PROG -f -c "truncate 10444800" $localfile
|
||||
|
||||
$MKFS_XFS_PROG -dsu=65536,sw=1 $localfile >> $seqres.full 2>&1
|
||||
|
||||
[ $? -ne 1 ] && echo "${MKFS_XFS_PROG} should fail gracefully"
|
||||
|
||||
# success, all done
|
||||
status=0
|
||||
exit
|
||||
@@ -0,0 +1,2 @@
|
||||
QA output created by 260
|
||||
Silence is golden
|
||||
@@ -257,6 +257,7 @@
|
||||
257 auto quick clone
|
||||
258 auto quick clone
|
||||
259 auto quick
|
||||
260 auto quick mkfs
|
||||
261 auto quick quota
|
||||
262 dangerous_fuzzers dangerous_scrub dangerous_online_repair
|
||||
263 auto quick quota
|
||||
|
||||
Reference in New Issue
Block a user