mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
2529c9486a
Fully scripted conversion, see script in initial SPDX license commit message. tests/xfs/044 was hand massaged to remove duplicate copyright and divider lines before running the script. Signed-off-by: Dave Chinner <dchinner@redhat.com>
57 lines
1.1 KiB
Bash
Executable File
57 lines
1.1 KiB
Bash
Executable File
#! /bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2000-2004 Silicon Graphics, Inc. All Rights Reserved.
|
|
#
|
|
# FS QA Test No. 095
|
|
#
|
|
# Test upgrading the XFS log to v2
|
|
#
|
|
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.*
|
|
}
|
|
|
|
# get standard environment, filters and checks
|
|
. ./common/rc
|
|
. ./common/filter
|
|
. ./common/log
|
|
|
|
# real QA test starts here
|
|
|
|
# Modify as appropriate.
|
|
_supported_fs xfs
|
|
_supported_os Linux
|
|
_require_scratch
|
|
_require_v2log
|
|
|
|
if [ "$(blockdev --getss $SCRATCH_DEV)" != "512" ]; then
|
|
_notrun "need 512b sector size"
|
|
fi
|
|
|
|
export MOUNT_OPTIONS="-o logbsize=64k"
|
|
|
|
# try and mount a v1 log with a v2 LRsize
|
|
# expect failure
|
|
_mkfs_log "-l version=1 -m crc=0 -d sectsize=512"
|
|
_scratch_xfs_db -c 'version' | tr ',' '\n' | grep LOGV2
|
|
_create_log
|
|
|
|
# now make the fs a v2 fs and try to mount again
|
|
# it should succeed this time
|
|
_scratch_xfs_db -x -c 'version log2' | tr ',' '\n' | grep LOGV2
|
|
_create_log
|
|
|
|
# success, all done
|
|
status=0
|
|
exit
|