mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-12 01:16:13 +00:00
cebf3b3722
Use TEST_TOP as base for tests to reference any files, this will be used for git and external testsuite. INTERNAL_BIN is needed for referencing binaries that could reside in different paths in git vs external testsuite. Signed-off-by: Gu Jinxiang <gujx@cn.fujitsu.com> [ add quotes around sourced files, update changelog ] Signed-off-by: David Sterba <dsterba@suse.com>
31 lines
841 B
Bash
Executable File
31 lines
841 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# simple test of qgroup show --sync option
|
|
|
|
source "$TEST_TOP/common"
|
|
|
|
check_prereq mkfs.btrfs
|
|
check_prereq btrfs
|
|
|
|
setup_root_helper
|
|
prepare_test_dev 1g
|
|
|
|
run_check "$TOP/mkfs.btrfs" -f "$TEST_DEV"
|
|
run_check_mount_test_dev
|
|
|
|
run_check $SUDO_HELPER "$TOP/btrfs" subvolume create "$TEST_MNT/Sub"
|
|
run_check $SUDO_HELPER "$TOP/btrfs" quota enable "$TEST_MNT/Sub"
|
|
|
|
for opt in '' '--' '--sync'; do
|
|
run_check $SUDO_HELPER "$TOP/btrfs" qgroup limit 300M "$TEST_MNT/Sub"
|
|
run_check $SUDO_HELPER dd if=/dev/zero of="$TEST_MNT/Sub/file" bs=1M count=200
|
|
|
|
run_check $SUDO_HELPER "$TOP/btrfs" qgroup show -re $opt "$TEST_MNT/Sub"
|
|
|
|
run_check $SUDO_HELPER "$TOP/btrfs" qgroup limit none "$TEST_MNT/Sub"
|
|
run_check $SUDO_HELPER rm -f "$TEST_MNT/Sub/file"
|
|
run_check "$TOP/btrfs" filesystem sync "$TEST_MNT/Sub"
|
|
done
|
|
|
|
run_check_umount_test_dev
|