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 B8BF9A0524; Fri, 5 Feb 2021 09:21:16 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 886BC40682; Fri, 5 Feb 2021 09:21:16 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 800294067B for ; Fri, 5 Feb 2021 09:21:13 +0100 (CET) IronPort-SDR: DATpd0MTYjWIVFviX+l+AK1mKPsaHGLvx8ZeW/UuSrxSbu+OzwIN0bEB1GGnY1p0NEMngNNNFs goW5YpZF7QPg== X-IronPort-AV: E=McAfee;i="6000,8403,9885"; a="178840325" X-IronPort-AV: E=Sophos;i="5.81,154,1610438400"; d="scan'208";a="178840325" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Feb 2021 00:20:33 -0800 IronPort-SDR: r6UZyqderD4LVt6UQ7Re9WEjhxmLPMkYuR5ELlDnCBi62NS0IgCCOlA8zFN7PFC10IEAoR6Ypm +5WUWeEy51jA== X-IronPort-AV: E=Sophos;i="5.81,154,1610438400"; d="scan'208";a="373273209" Received: from unknown (HELO localhost.localdomain.localdomain) ([10.240.183.111]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Feb 2021 00:20:31 -0800 From: Zhou Jun To: dts@dpdk.org Cc: Zhou Jun Date: Fri, 5 Feb 2021 16:17:55 +0800 Message-Id: <1612513075-15926-1-git-send-email-junx.w.zhou@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V1] tests/TestSuite_external_memory: fix wrong expect value 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 Sender: "dts" fix wrong expect value Signed-off-by: Zhou Jun --- tests/TestSuite_external_memory.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_external_memory.py b/tests/TestSuite_external_memory.py index b379ccb..0224a31 100644 --- a/tests/TestSuite_external_memory.py +++ b/tests/TestSuite_external_memory.py @@ -93,7 +93,7 @@ class TestExternalMemory(TestCase): self.insmod_modprobe(modename="igb_uio") self.eal_para = self.dut.create_eal_parameters(cores="1S/4C/1T") self.dut.send_expect(r'./%s %s -- --mp-alloc=xmem -i' - % (self.app_testpmd_path, self.eal_para), "link state change event", 60) + % (self.app_testpmd_path, self.eal_para), "testpmd>", 60) self.verifier_result() def test_IGB_UIO_xmemhuage(self): @@ -103,7 +103,7 @@ class TestExternalMemory(TestCase): self.insmod_modprobe(modename="igb_uio") self.eal_para = self.dut.create_eal_parameters(cores="1S/4C/1T") self.dut.send_expect(r'./%s %s -- --mp-alloc=xmemhuge -i' - % (self.app_testpmd_path, self.eal_para), "link state change event", 60) + % (self.app_testpmd_path, self.eal_para), "testpmd>", 60) self.verifier_result() def test_VFIO_PCI_xmem(self): -- 1.8.3.1