From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id B126EC416 for ; Thu, 18 Jun 2015 11:16:55 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP; 18 Jun 2015 02:16:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,638,1427785200"; d="scan'208";a="729817148" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 18 Jun 2015 02:16:54 -0700 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id t5I9Gq4q026021; Thu, 18 Jun 2015 17:16:52 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id t5I9GoxX019747; Thu, 18 Jun 2015 17:16:52 +0800 Received: (from yliu84x@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id t5I9GouU019743; Thu, 18 Jun 2015 17:16:50 +0800 From: Yong Liu To: dts@dpdk.org Date: Thu, 18 Jun 2015 17:16:49 +0800 Message-Id: <1434619009-19711-1-git-send-email-yong.liu@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dts] [PATCH] Optimize debugger and qemu_kvm module help message X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 09:16:56 -0000 From: Marvin Liu Signed-off-by: Marvin Liu diff --git a/framework/debugger.py b/framework/debugger.py index 4151196..e877336 100644 --- a/framework/debugger.py +++ b/framework/debugger.py @@ -44,14 +44,14 @@ def help_command(): console.push('print \'Help on debug module\'') console.push('print \'DESCRIPTION\'') console.push('print \'DTS debug module support few debug commands\'') - console.push('print \' - help: help messages\'') - console.push('print \' - list: list all connections\'') - console.push('print \' - connect: bind to specified connection\'') + console.push('print \' - help(): help messages\'') + console.push('print \' - list(): list all connections\'') + console.push('print \' - connect(): bind to specified connection\'') console.push('print \' - : connect(\"dut\")\'') - console.push('print \' - quit: quit debug module\'') - console.push('print \' - exit: exit processing procedure\'') - console.push('print \' - debug: call python debug module for further debug\'') - console.push('print \' - debugcase: jump into debug mode before first testcase run \'') + console.push('print \' - quit(): quit debug module\'') + console.push('print \' - exit(): exit processing procedure\'') + console.push('print \' - debug(): call python debug module for further debug\'') + console.push('print \' - rerun(): re-run the interrupted test case\'') def list_command(): diff --git a/framework/qemu_kvm.py b/framework/qemu_kvm.py index 6320a43..434c32d 100644 --- a/framework/qemu_kvm.py +++ b/framework/qemu_kvm.py @@ -649,6 +649,7 @@ class QEMUKvm(VirtBase): def add_vm_qga(self, **options): """ enable: 'yes' + Make sure qemu-guest-agent servie up in vm """ QGA_DEV_ID = '%(vm_name)s_qga0' % {'vm_name': self.vm_name} QGA_SOCK_PATH = QGA_SOCK_PATH_TEMPLATE % {'vm_name': self.vm_name} -- 1.9.3