diff options
author | Krzysztof Wojcik <krzysztof.wojcik@intel.com> | 2010-12-26 11:59:14 +0100 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2010-12-26 11:59:14 +0100 |
commit | 4f8a3e5baf77a3951b42d9522d75f0e7915912ec (patch) | |
tree | 9a3fe057807fc40cd25dc6d6cd0d30b3683064a7 /tests/13imsm-r5_r0_3d-grow-r5_r0_5d | |
parent | FIX: Bad block verification during assembling array (diff) | |
download | mdadm-4f8a3e5baf77a3951b42d9522d75f0e7915912ec.tar.xz mdadm-4f8a3e5baf77a3951b42d9522d75f0e7915912ec.zip |
Enable tests for OLCE, takeover, migrations for imsm metadata
Patch provides set of tests for On-line Capacity Expansion,
takeover, migrations operations for imsm metadata type.
Tests are grouped by operation type:
12 - On-line Capacity Expansion on one volume
13 - On-line Capacity Expansion on two volumes
14 - Negative tests for takeover, migrations
15 - Chunk size migrations
16 - raid0 -> raid5, raid5 -> raid0 migrations
18 - takeover operations
To run particular test group, following command should be executed:
(from mdadm's source code root directory)
./test <group number>
Example:
To run On-line Capacity Expansion on one volume tests:
./test 12
Tests execution results:
- In case of test pass, "succeeded" word is printed on console
- If test is failed, "FAILED" word is printed on console
and logs are stored in <mdadm-root-dir>/tests/log/ directory
Signed-off-by: Artur Wojcik <artur.wojcik@intel.com>
Signed-off-by: Krzysztof Wojcik <krzysztof.wojcik@intel.com>
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'tests/13imsm-r5_r0_3d-grow-r5_r0_5d')
-rw-r--r-- | tests/13imsm-r5_r0_3d-grow-r5_r0_5d | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/13imsm-r5_r0_3d-grow-r5_r0_5d b/tests/13imsm-r5_r0_3d-grow-r5_r0_5d new file mode 100644 index 00000000..990c828b --- /dev/null +++ b/tests/13imsm-r5_r0_3d-grow-r5_r0_5d @@ -0,0 +1,27 @@ +# Grow the container (arrays inside) from 3 disks to 5 disks +# POSITIVE test + +num_disks=3 +device_list="$dev0 $dev1 $dev2" +spare_list="$dev3 $dev4" + +# Before: RAID 5 volume in slot #0, 3 disks, 128k chunk size +# RAID 0 volume in slot #1, 3 disks, 256k chunk size +vol0_level=5 +vol0_comp_size=$((5 * 1024)) +vol0_chunk=64 +vol0_num_comps=$((num_disks - 1)) +vol0_offset=0 + +vol1_level=0 +vol1_comp_size=$((5 * 1024)) +vol1_chunk=64 +vol1_offset=$((vol0_comp_size + 2048)) +vol1_num_comps=$num_disks + +# After: RAID 5 volume in slot #0, 5 disks, 128k chunk size +# RAID 0 volume in slot #1, 5 disks, 256k chunk size +vol0_new_num_comps=$((num_disks + 1)) +vol1_new_num_comps=$((num_disks + 2)) + +. tests/imsm-grow-template 0 0 |