From db4078959087f9167b2f4bee0264bb3437a7a6b9 Mon Sep 17 00:00:00 2001 From: Petr Rockai Date: Sat, 4 Jun 2011 21:55:25 +0000 Subject: [PATCH] Also check in the pe_start API test that the disks have not been touched. --- test/api/pe_start.c | 6 +++--- test/api/pe_start.sh | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/test/api/pe_start.c b/test/api/pe_start.c index 5bd02d5d7..129f8a2dc 100644 --- a/test/api/pe_start.c +++ b/test/api/pe_start.c @@ -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"); diff --git a/test/api/pe_start.sh b/test/api/pe_start.sh index 6b50aa44c..ecd90af1c 100644 --- a/test/api/pe_start.sh +++ b/test/api/pe_start.sh @@ -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 -- 2.43.5