From nobody Wed Apr 16 08:21:10 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1558370252; cv=none; d=zoho.com; s=zohoarc; b=W74bVEqpnZJCkTrBOqN1p2SSImepPVAZEwlRXq6nkeuhqYkRu9cFeXr6reP0NepB5GWysPBHUrk6wRBEtpYdjI9kql5/ncE+Rua9iX6jIMxFc4SIfuW2eKhQzp3BNkXm+7U32j0V3G494Mry1WVZDUSQk6kGR2gquchhngI9Xw4= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1558370252; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=w4yVSZD8sddBfQkJ6Gy/uCREdBN8XqXuzWhVQTwn40A=; b=Cltzm6cBKgd2wVf4IC1mgcDjd7fLsnfkEB0qFxicWBBsZOduZLItqU1lnXBvqECLmf88nfll45Y5WVb/cLaQm89OL428gEuSW6fyCMvUeny1iq/5twpMy4Vycqf+1b+5jNrwqBRdm5jhTptPNnt4o11QI8lCezL4d31ebzd/Ztk= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1558370252947278.1957882973077; Mon, 20 May 2019 09:37:32 -0700 (PDT) Received: from localhost ([127.0.0.1]:38358 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hSlHz-00017n-W1 for importer@patchew.org; Mon, 20 May 2019 12:37:28 -0400 Received: from eggs.gnu.org ([209.51.188.92]:38927) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hSkxH-0000GW-CY for qemu-devel@nongnu.org; Mon, 20 May 2019 12:16:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hSkxG-0003ok-9P for qemu-devel@nongnu.org; Mon, 20 May 2019 12:16:03 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35116) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hSkxA-0003ka-Fj; Mon, 20 May 2019 12:15:58 -0400 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C3423305F0DD; Mon, 20 May 2019 16:15:50 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-117-208.ams2.redhat.com [10.36.117.208]) by smtp.corp.redhat.com (Postfix) with ESMTP id DCD06704DB; Mon, 20 May 2019 16:15:49 +0000 (UTC) From: Kevin Wolf To: qemu-block@nongnu.org Date: Mon, 20 May 2019 18:14:52 +0200 Message-Id: <20190520161453.30723-24-kwolf@redhat.com> In-Reply-To: <20190520161453.30723-1-kwolf@redhat.com> References: <20190520161453.30723-1-kwolf@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.43]); Mon, 20 May 2019 16:15:55 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PULL 23/24] iotests.py: Fix VM.run_job X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: kwolf@redhat.com, qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" From: Max Reitz log() is in the current module, there is no need to prefix it. In fact, doing so may make VM.run_job() unusable in tests that never use iotests.log() themselves. Signed-off-by: Max Reitz Reviewed-by: Alberto Garcia Signed-off-by: Kevin Wolf --- tests/qemu-iotests/iotests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py index d96ba1f63c..7bde380d96 100644 --- a/tests/qemu-iotests/iotests.py +++ b/tests/qemu-iotests/iotests.py @@ -552,7 +552,7 @@ class VM(qtest.QEMUQtestMachine): elif status =3D=3D 'null': return error else: - iotests.log(ev) + log(ev) =20 def node_info(self, node_name): nodes =3D self.qmp('query-named-block-nodes') --=20 2.20.1