From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id A25E8A055E; Wed, 26 Feb 2020 10:13:45 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9236C1BFE2; Wed, 26 Feb 2020 10:13:45 +0100 (CET) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 82A071BFD3 for ; Wed, 26 Feb 2020 10:13:43 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Feb 2020 01:13:36 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,487,1574150400"; d="scan'208";a="350345855" Received: from unknown (HELO dpdk-wenjielx-dtspatch135.sh.intel.com) ([10.240.176.135]) by fmsmga001.fm.intel.com with ESMTP; 26 Feb 2020 01:13:35 -0800 From: "zhu,shuai" To: dts@dpdk.org Cc: yinan.wang@intel.com, "zhu,shuai" Date: Wed, 26 Feb 2020 17:18:54 +0800 Message-Id: <1582708737-36706-5-git-send-email-shuaix.zhu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1582708737-36706-1-git-send-email-shuaix.zhu@intel.com> References: <1582708737-36706-1-git-send-email-shuaix.zhu@intel.com> Subject: [dts] [PATCH V1] tests/pvp_virtio_bonding:add create_eal_parameters function. 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: , Errors-To: dts-bounces@dpdk.org Sender: "dts" Remove parameters:"--socket-mem 2048,2048 --legacy-mem" Signed-off-by: zhu,shuai --- tests/TestSuite_pvp_virtio_bonding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_pvp_virtio_bonding.py b/tests/TestSuite_pvp_virtio_bonding.py index 1405b0b..b551487 100644 --- a/tests/TestSuite_pvp_virtio_bonding.py +++ b/tests/TestSuite_pvp_virtio_bonding.py @@ -88,7 +88,7 @@ class TestPVPVirtIOBonding(TestCase): for i in range(self.queues): vdev_info += "--vdev 'net_vhost%d,iface=vhost-net%d,client=1,queues=1' " % (i, i) params = "--port-topology=chained --nb-cores=4 --txd=1024 --rxd=1024" - eal_param = "--socket-mem 2048,2048 --legacy-mem --file-prefix=vhost %s " % vdev_info + eal_param = "--file-prefix=vhost %s " % vdev_info self.vhost_testpmd = PmdOutput(self.dut) self.vhost_testpmd.start_testpmd(self.core_config, params, eal_param=eal_param) self.vhost_testpmd.execute_cmd('set fwd mac') -- 2.17.2