Message ID | 20170918072139.6300-10-quwenruo.btrfs@gmx.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/tests/common b/tests/common index 9aebe3e7..242ded1d 100644 --- a/tests/common +++ b/tests/common @@ -440,7 +440,11 @@ DATASET_SIZE=50 generate_dataset() { dataset_type="$1" - dirpath=$TEST_MNT/$dataset_type + if [ -z "$2" ]; then + dirpath="$TEST_MNT/$dataset_type" + else + dirpath="$2/$dataset_type" + fi run_check $SUDO_HELPER mkdir -p "$dirpath" case "$dataset_type" in
Normally generate_dataset() will create data into $TEST_MNT/$dataset_type. This is OK since most tests are doing their operation in $TEST_MNT. However this is not the case for "mkfs --rootdir" test. This patch will adds an optional parameter for generate_dataset() to specify the destination directory, for later "mkfs --rootdir" test cases. Signed-off-by: Qu Wenruo <quwenruo.btrfs@gmx.com> --- tests/common | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)