X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=python%2Ft%2F050-lvcreate.py;h=f98fe29fb966d8adfc9648a2a8140ad16a81a91a;hp=98227e2327767b2625db17928a064d6c03387ae9;hb=4d900cdac8258daa2e99c6ceb2a4985154e94150;hpb=b3f11c5f62f725fa3f09452b38d52dba764f80d0 diff --git a/python/t/050-lvcreate.py b/python/t/050-lvcreate.py index 98227e2..f98fe29 100644 --- a/python/t/050-lvcreate.py +++ b/python/t/050-lvcreate.py @@ -15,15 +15,15 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +import os import guestfs -g = guestfs.guestfs() +g = guestfs.GuestFS() f = open ("test.img", "w") f.truncate (500 * 1024 * 1024) f.close () g.add_drive ("test.img") g.launch () -g.wait_ready () g.pvcreate ("/dev/sda") g.vgcreate ("VG", ["/dev/sda"]) g.lvcreate ("LV1", "VG", 200) @@ -33,5 +33,4 @@ if (g.lvs () != ["/dev/VG/LV1", "/dev/VG/LV2"]): g.sync () del g -import os os.unlink ("test.img")