----- "Lucas Meneghel Rodrigues" <lmr@xxxxxxxxxx> wrote: > From: "Lucas Meneghel Rodrigues" <lmr@xxxxxxxxxx> > To: "Feng Yang" <fyang@xxxxxxxxxx> > Cc: autotest@xxxxxxxxxxxxxxx, kvm@xxxxxxxxxxxxxxx > Sent: Thursday, April 15, 2010 8:05:41 AM GMT +08:00 Beijing / Chongqing / Hong Kong / Urumqi > Subject: Re: [Autotest] [PATCH] KVM Test: Fix bug that check_image.py will check removed image. > > On Mon, Apr 12, 2010 at 5:32 AM, Feng Yang <fyang@xxxxxxxxxx> wrote: > > If set remove_image to yes, the image will be removed before > > check_image.py is executed as post command. But check_img.py > > still try to check the removed image When it is running. > > This patch update check_image.py and let it do not check > > non-exist image. > > Thanks Feng, applied! > > > BTW, could we first run post command then remove the image? > > I don't see any problem with that. Could you please prepare a patch to > do it? Ok, will work on it. Thanks > > Thank you > > > Signed-off-by: Feng Yang <fyang@xxxxxxxxxx> > > --- > > client/tests/kvm/scripts/check_image.py | 3 +++ > > 1 files changed, 3 insertions(+), 0 deletions(-) > > > > diff --git a/client/tests/kvm/scripts/check_image.py > b/client/tests/kvm/scripts/check_image.py > > index 4056fb8..de163e7 100755 > > --- a/client/tests/kvm/scripts/check_image.py > > +++ b/client/tests/kvm/scripts/check_image.py > > @@ -77,6 +77,9 @@ class ImageCheck(object): > > # Check all the image in list. > > errmsg = [] > > for image_path in self.image_path_list: > > + if not os.path.exists(image_path): > > + print "Image %s does not exist!" % image_path > > + continue > > s, o = self.exec_img_cmd('info', image_path) > > if not s: > > errmsg.append(o) > > -- > > 1.5.5.6 > > > > _______________________________________________ > > Autotest mailing list > > Autotest@xxxxxxxxxxxxxxx > > http://test.kernel.org/cgi-bin/mailman/listinfo/autotest > > > > > > -- > Lucas -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html