mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-21 22:45:18 +00:00
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>
18 lines
349 B
Bash
Executable File
18 lines
349 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Check whether btrfs check quota verify will cause stack overflow.
|
|
# This is caused by lack of handling of tree reloc tree.
|
|
# Fixed by patch:
|
|
# btrfs-progs: Fix stack overflow for checking qgroup on tree reloc tree
|
|
|
|
source "$TEST_TOP/common"
|
|
|
|
check_prereq btrfs
|
|
|
|
check_image()
|
|
{
|
|
run_check "$TOP/btrfs" check "$1"
|
|
}
|
|
|
|
check_all_images
|