mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-11 08:56:05 +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>
19 lines
427 B
Bash
Executable File
19 lines
427 B
Bash
Executable File
#!/bin/bash
|
|
# test commands of btrfs
|
|
|
|
source "$TEST_TOP/common"
|
|
|
|
check_prereq btrfs
|
|
|
|
# returns 1
|
|
run_mayfail $TOP/btrfs || true
|
|
run_check "$TOP/btrfs" version
|
|
run_check "$TOP/btrfs" version --
|
|
run_check "$TOP/btrfs" help
|
|
run_check "$TOP/btrfs" help --
|
|
run_check "$TOP/btrfs" help --full
|
|
run_check "$TOP/btrfs" --help
|
|
run_check "$TOP/btrfs" --help --full
|
|
run_check "$TOP/btrfs" --version
|
|
run_check "$TOP/btrfs" --version --help
|