diff options
author | Jes Sorensen <Jes.Sorensen@redhat.com> | 2012-05-30 02:46:25 +0200 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2012-05-30 02:46:25 +0200 |
commit | 5e311406c499a9a54dffa4bad950f59aaa6160d3 (patch) | |
tree | b7b075f4b3b3e1360935d1a7b895e821fa9a2d74 /tests/05r1-remove-internalbitmap-v1b | |
parent | New tests testing the addition of bitmaps (diff) | |
download | mdadm-5e311406c499a9a54dffa4bad950f59aaa6160d3.tar.xz mdadm-5e311406c499a9a54dffa4bad950f59aaa6160d3.zip |
New tests testing removal of internal bitmaps
To match the add-bitmap tests, here is a set of tests checking the
removal of bitmaps.
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'tests/05r1-remove-internalbitmap-v1b')
-rw-r--r-- | tests/05r1-remove-internalbitmap-v1b | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/05r1-remove-internalbitmap-v1b b/tests/05r1-remove-internalbitmap-v1b new file mode 100644 index 00000000..c0918eb6 --- /dev/null +++ b/tests/05r1-remove-internalbitmap-v1b @@ -0,0 +1,18 @@ +# +# create a raid1 with bitmap, remove the bitmap and verify it is still +# gone when re-assembling the array +# +mdadm --create --run $md0 --metadata=1.1 --level=1 -n2 --bitmap internal --bitmap-chunk=4 --delay=1 $dev1 $dev2 +check wait +check bitmap +testdev $md0 1 $mdsize1b 64 +mdadm -Gb none $md0 +check nobitmap +testdev $md0 1 $mdsize1b 64 +mdadm -S $md0 + +# Re-assemble the array and verify the bitmap is still present +mdadm --assemble $md0 $dev1 $dev2 +check nobitmap +testdev $md0 1 $mdsize1b 64 +mdadm -S $md0 |