1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Also check in the pe_start API test that the disks have not been touched.

This commit is contained in:
Petr Rockai 2011-06-04 21:55:25 +00:00
parent f7a80fd8e3
commit f221800b25
2 changed files with 6 additions and 4 deletions

View File

@ -27,13 +27,13 @@ int main(int argc, char *argv[])
handle = lvm_init(NULL);
assert(handle);
vg = lvm_vg_create(handle, "test_vg");
vg = lvm_vg_create(handle, argv[1]);
assert(vg);
if (lvm_vg_extend(vg, argv[1]))
if (lvm_vg_extend(vg, argv[2]))
abort();
pv = lvm_pv_from_name(vg, argv[1]);
pv = lvm_pv_from_name(vg, argv[2]);
assert(pv);
v = lvm_pv_get_property(pv, "pe_start");

View File

@ -14,4 +14,6 @@
. lib/test
aux prepare_devs 2
aux apitest pe_start $dev1
aux apitest pe_start test_vg $dev1
not vgs test_vg
not pvs $dev1