Dmitry V. Levin
92e347b556
We do our best to keep copyright headers up to date, yet git history provides better information on this subject and is more accurate than copyright headers.
31 lines
772 B
Bash
Executable File
31 lines
772 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Check verbose decoding of btrfs ioctl w/ live ioctls.
|
|
#
|
|
# Copyright (c) 2016-2018 The strace developers.
|
|
# All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# WARNING: USE OF THIS TEST WILL MODIFY AN EXISTING BTRFS FILE SYSTEM
|
|
|
|
# Typical usage:
|
|
# mkfs.btrfs <dev>
|
|
# mount <dev> /mnt
|
|
# BTRFS_MOUNTPOINT=/mnt make check TESTS="btrfs-vw"
|
|
# umount /mnt
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
if [ -z "${BTRFS_MOUNTPOINT}" ]; then
|
|
skip_ "\$BTRFS_MOUNTPOINT not set"
|
|
elif [ ! -d "${BTRFS_MOUNTPOINT}" ]; then
|
|
skip_ "\$BTRFS_MOUNTPOINT does not point to a directory"
|
|
fi
|
|
|
|
check_prog grep
|
|
run_prog ../btrfs -v -w "${BTRFS_MOUNTPOINT}" > /dev/null
|
|
run_strace -a16 -veioctl $args > "$EXP"
|
|
grep -v '^ioctl([012],' < "$LOG" > "$OUT"
|
|
match_diff "$OUT" "$EXP"
|