From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 749D3427DE; Mon, 20 Mar 2023 06:16:20 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3F08840A7F; Mon, 20 Mar 2023 06:16:20 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 90AF9406BC for ; Mon, 20 Mar 2023 06:16:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1679289378; x=1710825378; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=e+4mSD4AhzRXbISpAUesDRCK5WxUTpwNLFrdYcJ9hL4=; b=nSmubocLPOfALuy0t2wOYu1IlDHEK5oevHpL6O9dZdUBhcjaDMpsTwR5 x994CEOhsILvMYq2w0LkjAE9gqUfFuAa5tSwIqpwt/M7+RzcLLi2HVlZa vah9Ny4vRKW8SpiUXBQ4FtPvp4/FO/3+7QBxo/uEJmggIIKJ0HxSiFJpW v7Nl699K94M9T4zTgKxMELplz7rIZ9xa6qShixTlKtbPKbGETqEzzsdi6 NWitpXIqWNEaNmTSEW86UmLFgyTKMnyKgIFg74YWNdfi9lqeFw3hYGKp1 nqwVctvajRMiVFVg9TNkXTpNeeLlszpd89qXNiRlH1JZj804hAd8HCOZ4 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10654"; a="340119427" X-IronPort-AV: E=Sophos;i="5.98,274,1673942400"; d="scan'208";a="340119427" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Mar 2023 22:16:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10654"; a="680940636" X-IronPort-AV: E=Sophos;i="5.98,274,1673942400"; d="scan'208";a="680940636" Received: from unknown (HELO localhost.localdomain) ([10.239.252.222]) by orsmga002-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Mar 2023 22:16:15 -0700 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Subject: [dts][PATCH V1] tests/cbdma: fix testcase7 quit testpmd issue Date: Mon, 20 Mar 2023 13:14:24 +0800 Message-Id: <20230320051424.3263535-1-weix.ling@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Fix case7 quit testpmd issue, and delete unused self.result_table_print(). Signed-off-by: Wei Ling --- tests/TestSuite_cbdma.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/TestSuite_cbdma.py b/tests/TestSuite_cbdma.py index d5198472..e5f66a51 100644 --- a/tests/TestSuite_cbdma.py +++ b/tests/TestSuite_cbdma.py @@ -412,9 +412,8 @@ class TestCBDMA(TestCase): cores=self.core_list, ports=dev_info ) self.launch_dma_app(eal_params) - self.send_session.send_expect("^C", "#") - self.pmdout.execute_cmd("^C") - self.result_table_print() + self.send_session.send_expect("^C", "# ") + self.pmdout.execute_cmd("quit", "# ") def tear_down(self): """ -- 2.25.1