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@xxxxxxx>
---
tests/common | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
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
--
2.14.1
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html