From patchwork Thu Aug 13 04:25:51 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas Meneghel Rodrigues X-Patchwork-Id: 40976 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n7D4PxPZ020116 for ; Thu, 13 Aug 2009 04:25:59 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750988AbZHMEZz (ORCPT ); Thu, 13 Aug 2009 00:25:55 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750926AbZHMEZy (ORCPT ); Thu, 13 Aug 2009 00:25:54 -0400 Received: from mx2.redhat.com ([66.187.237.31]:59884 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750729AbZHMEZy (ORCPT ); Thu, 13 Aug 2009 00:25:54 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n7D4PtRO028414; Thu, 13 Aug 2009 00:25:55 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n7D4Ps1K030214; Thu, 13 Aug 2009 00:25:54 -0400 Received: from [10.16.10.12] (vpn-10-12.bos.redhat.com [10.16.10.12]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n7D4PqF5018558; Thu, 13 Aug 2009 00:25:53 -0400 Subject: [KVM-AUTOTEST PATCH] Fixing small mistake introduced by changeset:3528 From: Lucas Meneghel Rodrigues To: Autotest mailing list Cc: KVM mailing list Date: Thu, 13 Aug 2009 01:25:51 -0300 Message-Id: <1250137551.2921.58.camel@localhost.localdomain> Mime-Version: 1.0 X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org When working on changeset:3528, made a mistake on one destination path. Fixing it. Signed-off-by: Lucas Meneghel Rodrigues --- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: trunk/client/tests/kvm/kvm_preprocessing.py =================================================================== --- trunk/client/tests/kvm/kvm_preprocessing.py (revision 3536) +++ trunk/client/tests/kvm/kvm_preprocessing.py (working copy) @@ -292,8 +292,9 @@ " files to PNG format...") try: for f in glob.glob(os.path.join(test.debugdir, "*.ppm")): + new_path = f.replace(".ppm", ".png") image = PIL.Image.open(f) - image.save(history_scrdump_filename, format = 'PNG') + image.save(new_path, format = 'PNG') except NameError: pass