[lvm-devel] master - python-lvm: Test case change for vg.reduce

tasleson tasleson at fedoraproject.org
Tue Nov 19 20:56:33 UTC 2013


Gitweb:        http://git.fedorahosted.org/git/?p=lvm2.git;a=commitdiff;h=ec7f632ce08014ca5ceb3ac6c92d834fb0b8c93e
Commit:        ec7f632ce08014ca5ceb3ac6c92d834fb0b8c93e
Parent:        5074dcc896681494309c59830803b54a84429fd0
Author:        Tony Asleson <tasleson at redhat.com>
AuthorDate:    Tue Sep 10 17:59:45 2013 -0500
Committer:     Tony Asleson <tasleson at redhat.com>
CommitterDate: Tue Nov 19 14:40:32 2013 -0600

python-lvm: Test case change for vg.reduce

Fix reduce as newly changed vg reduce fails when you
try to remove the last pv in the vg.

Signed-off-by: Tony Asleson <tasleson at redhat.com>
---
 test/api/python_lvm_unit.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/test/api/python_lvm_unit.py b/test/api/python_lvm_unit.py
index bceb82c..eab9575 100755
--- a/test/api/python_lvm_unit.py
+++ b/test/api/python_lvm_unit.py
@@ -185,7 +185,7 @@ class TestLvm(unittest.TestCase):
 		for p in pvs:
 			pe_devices.append(p.getName())
 
-		for pv in pe_devices:
+		for pv in pe_devices[:-1]:
 			vg.reduce(pv)
 
 		vg.remove()




More information about the lvm-devel mailing list