mirror of
https://github.com/kdave/btrfs-progs
synced 2025-01-15 10:11:34 +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>
36 lines
927 B
Bash
Executable File
36 lines
927 B
Bash
Executable File
#!/bin/bash
|
|
# iterate over nodesize and sectorsize combinations
|
|
|
|
source "$TEST_TOP/common"
|
|
|
|
check_prereq mkfs.btrfs
|
|
check_prereq btrfs
|
|
|
|
setup_root_helper
|
|
prepare_test_dev
|
|
|
|
test_mkfs_single()
|
|
{
|
|
run_check $SUDO_HELPER $TOP/mkfs.btrfs -f "$@" $TEST_DEV
|
|
run_check $SUDO_HELPER $TOP/btrfs inspect-internal dump-super $TEST_DEV
|
|
run_check $SUDO_HELPER $TOP/btrfs check $TEST_DEV
|
|
}
|
|
|
|
# default
|
|
test_mkfs_single
|
|
|
|
# nodesize >= sectorsize
|
|
for nodesize in 4096 8192 16384 32768 65536; do
|
|
for sectorsize in 4096 8192 16384 32768 65536; do
|
|
[ $nodesize -lt $sectorsize ] && continue
|
|
test_mkfs_single -n $nodesize -s $sectorsize -d single -m single
|
|
test_mkfs_single -n $nodesize -s $sectorsize -d single -m dup
|
|
done
|
|
done
|
|
|
|
# nodesize, mixed mode
|
|
for nodesize in 4k 8k 16k 32k 64k; do
|
|
test_mkfs_single -n $nodesize -s $nodesize -d single -m single --mixed
|
|
test_mkfs_single -n $nodesize -s $nodesize -d dup -m dup --mixed
|
|
done
|