Skip to content

Commit 0fe32bf

Browse files
committed
Make the test's thin pool smaller
Especially since the size is 1GiB, allocating 16GiB for metadata doesn't make much sense. Signed-off-by: Kazuyoshi Kato <[email protected]>
1 parent e63b8af commit 0fe32bf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tools/thinpool.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ else
8383

8484
pool_create() {
8585
echo sudo lvcreate --type thin-pool \
86-
--poolmetadatasize 16GiB \
87-
--size 1G \
86+
--poolmetadatasize 16MiB \
87+
--size 1GiB \
8888
-n "$name" "$FICD_DM_VOLUME_GROUP"
8989
sudo lvcreate --type thin-pool \
90-
--poolmetadatasize 16GiB \
91-
--size 1G \
90+
--poolmetadatasize 16MiB \
91+
--size 1GiB \
9292
-n "$name" "$FICD_DM_VOLUME_GROUP"
9393
}
9494

0 commit comments

Comments
 (0)