mdadm/tests/15imsm-r5_6d_4k-migrate-r5_6d_256k
Krzysztof Wojcik 4f8a3e5baf 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>
2010-12-26 21:59:14 +11:00

20 lines
410 B
Plaintext

# RAID 5 volume, Migration from 4k to 256k chunk size.
# POSITIVE test
num_disks=6
device_list="$dev0 $dev1 $dev2 $dev3 $dev4 $dev5"
# RAID 5, 6 disks, 4k chunk size
vol0_level=5
vol0_comp_size=$((5 * 1024))
vol0_chunk=4
vol0_num_comps=$((num_disks - 1))
vol0_offset=0
# RAID 5, 6 disks, 256k chunk size
vol0_new_level=5
vol0_new_num_comps=$vol0_num_comps
vol0_new_chunk=256
. tests/imsm-grow-template 0 1