From patchwork Thu Oct 4 10:29:05 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Jiri Zupka X-Patchwork-Id: 1545941 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 7B252DF238 for ; Thu, 4 Oct 2012 10:29:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753502Ab2JDK3g (ORCPT ); Thu, 4 Oct 2012 06:29:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43694 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753063Ab2JDK3g (ORCPT ); Thu, 4 Oct 2012 06:29:36 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q94ATE7W022479 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 4 Oct 2012 06:29:14 -0400 Received: from jzupka-pc.local.com (vpn1-5-104.ams2.redhat.com [10.36.5.104]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q94ATAqg030456; Thu, 4 Oct 2012 06:29:12 -0400 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=BDupka?= To: autotest@test.kernel.org, kvm@vger.kernel.org, kvm-autotest@redhat.com, lmr@redhat.com, ldoktor@redhat.com, jzupka@redhat.com Subject: [virt][PATCH 1/4] virt: makes multihost.srv more verbose Date: Thu, 4 Oct 2012 12:29:05 +0200 Message-Id: <1349346548-25288-2-git-send-email-jzupka@redhat.com> In-Reply-To: <1349346548-25288-1-git-send-email-jzupka@redhat.com> References: <1349346548-25288-1-git-send-email-jzupka@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Before testing multihost.srv prints list of test which will be tested. Signed-off-by: Ji?í Župka --- kvm/multi_host.srv | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/kvm/multi_host.srv b/kvm/multi_host.srv index 98cd0f6..fe777d1 100644 --- a/kvm/multi_host.srv +++ b/kvm/multi_host.srv @@ -81,6 +81,13 @@ def run(machines): host = _hosts[machine] ips.append(host.host.ip) + logging.info("") + for i, params in enumerate(test_dicts): + logging.info("Test %d: %s" % (i, params.get("shortname"))) + logging.info("") + + test_dicts = parser.get_dicts() + for params in test_dicts: params['hosts'] = ips