mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
b8a84870b3
commit 61536bed2149 ("ovl: support [S|G]ETFLAGS and FS[S|G]ETXATTR
ioctls for directories") makes the comment in test header inaccurate.
Fix the comment to include this information.
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Reviewed-by: Eryu Guan <guaneryu@gmail.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
59 lines
1.5 KiB
Bash
Executable File
59 lines
1.5 KiB
Bash
Executable File
#! /bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2017 CTERA Networks. All Rights Reserved.
|
|
#
|
|
# FS QA Test No. 030
|
|
#
|
|
# Run the t_immutable test program for immutable/append-only files
|
|
# and directories in an overlayfs upper directory.
|
|
#
|
|
# This test is similar and was derived from generic/079, but
|
|
# the original test is _notrun with FSTYP=overlay on kernel < v5.10
|
|
# because prior to commit 61536bed2149 ("ovl: support [S|G]ETFLAGS
|
|
# and FS[S|G]ETXATTR ioctls for directories"), t_immutable -c would
|
|
# fail to prepare immutable/append-only directories on the overlay
|
|
# mount path.
|
|
#
|
|
seq=`basename $0`
|
|
seqres=$RESULT_DIR/$seq
|
|
echo "QA output created by $seq"
|
|
|
|
here=`pwd`
|
|
timmutable=$here/src/t_immutable
|
|
upperdir=$OVL_BASE_SCRATCH_MNT/$OVL_UPPER
|
|
tmp=/tmp/$$
|
|
status=1 # failure is the default!
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
_cleanup()
|
|
{
|
|
$timmutable -r $upperdir/t_immutable &> /dev/null
|
|
rm -f $tmp.*
|
|
}
|
|
|
|
# get standard environment, filters and checks
|
|
. ./common/rc
|
|
. ./common/filter
|
|
|
|
_supported_fs overlay
|
|
|
|
_require_chattr ia
|
|
_require_test_program "t_immutable"
|
|
_require_scratch
|
|
|
|
_scratch_mkfs
|
|
|
|
# Preparing immutable files in uppper dir
|
|
mkdir -p $upperdir
|
|
$timmutable -C $upperdir/t_immutable >$tmp.out 2>&1
|
|
if grep -q -e 'Operation not supported' -e "Inappropriate ioctl" $tmp.out; then
|
|
_notrun "Setting immutable/append flag not supported"
|
|
fi
|
|
|
|
_scratch_mount
|
|
|
|
# Test immutability of files in overlay
|
|
$timmutable $SCRATCH_MNT/t_immutable 2>&1
|
|
status=$?
|
|
exit
|