mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
7e98d41a6e
Refactor every test in the entire test suite to use the new boilerplate functions. This also migrates all the test group information into the test files. This patch has been autogenerated via the command: ./tools/convert-group btrfs ceph cifs ext4 f2fs generic nfs ocfs2 overlay perf shared udf xfs Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Allison Henderson <allison.henderson@oracle.com> Reviewed-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
43 lines
798 B
Bash
Executable File
43 lines
798 B
Bash
Executable File
#! /bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2012 Red Hat, Inc. All Rights Reserved.
|
|
#
|
|
# FS QA Test No. 293
|
|
#
|
|
# Ensure all xfs_io commands are documented
|
|
#
|
|
. ./common/preamble
|
|
_begin_fstest auto quick
|
|
|
|
# Import common functions.
|
|
. ./common/filter
|
|
|
|
# real QA test starts here
|
|
|
|
# Modify as appropriate.
|
|
_supported_fs xfs
|
|
|
|
_require_command "$MAN_PROG" man
|
|
|
|
echo "Silence is golden"
|
|
|
|
MANPAGE=`$MAN_PROG --path xfs_io`
|
|
|
|
case "$MANPAGE" in
|
|
*.gz|*.z\|*.Z) CAT=zcat;;
|
|
*.bz2) CAT=bzcat;;
|
|
*.xz) CAT=xzcat;;
|
|
*) CAT=cat;;
|
|
esac
|
|
|
|
_require_command `which $CAT` $CAT
|
|
|
|
for COMMAND in `$XFS_IO_PROG -c help | awk '{print $1}' | grep -v "^Use"`; do
|
|
$CAT "$MANPAGE" | egrep -q "^\.B.*$COMMAND" || \
|
|
echo "$COMMAND not documented in the xfs_io manpage"
|
|
done
|
|
|
|
# success, all done
|
|
status=0
|
|
exit
|