mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-13 01:46:14 +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>
30 lines
616 B
Bash
Executable File
30 lines
616 B
Bash
Executable File
#!/bin/bash
|
|
# In order to confirm that 'btrfs check' supports checking a variety of refs,
|
|
# add the following cases:
|
|
#
|
|
# * keyed_block_ref
|
|
# * keyed_data_ref
|
|
# * shared_block_ref
|
|
# * shared_data_ref
|
|
# * no_inline_ref (a extent item without inline ref)
|
|
# * no_skinny_ref
|
|
#
|
|
# Special check for lowmem regression
|
|
# * block_group_item_false_alert
|
|
# Containing a block group and its first extent at
|
|
# the beginning of leaf.
|
|
# Which caused false alert for lowmem mode.
|
|
|
|
source "$TEST_TOP/common"
|
|
|
|
check_prereq btrfs
|
|
|
|
check_image() {
|
|
local image
|
|
|
|
image=$1
|
|
run_check "$TOP/btrfs" check "$image"
|
|
}
|
|
|
|
check_all_images
|