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 D1C20A0560; Wed, 26 Feb 2020 10:41:35 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 829541BFE9; Wed, 26 Feb 2020 10:41:35 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id A2DA21BFC7 for ; Wed, 26 Feb 2020 10:41:33 +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 fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Feb 2020 01:41:33 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,487,1574150400"; d="scan'208";a="350351593" Received: from unknown (HELO dpdk-xiaoqimai-dut.sh.intel.com) ([10.240.179.33]) by fmsmga001.fm.intel.com with ESMTP; 26 Feb 2020 01:41:32 -0800 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Wed, 26 Feb 2020 17:37:20 +0800 Message-Id: <1582709840-24698-7-git-send-email-qimaix.xiao@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1582709840-24698-1-git-send-email-qimaix.xiao@intel.com> References: <1582709840-24698-1-git-send-email-qimaix.xiao@intel.com> Subject: [dts] [PATCH V1 7/7]virtio_user_for_container_networking: remove unnecessary param --single-file-segments from vhost 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" Signed-off-by: Xiao Qimai --- tests/TestSuite_virtio_user_for_container_networking.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/TestSuite_virtio_user_for_container_networking.py b/tests/TestSuite_virtio_user_for_container_networking.py index ba303b7..aa856e7 100644 --- a/tests/TestSuite_virtio_user_for_container_networking.py +++ b/tests/TestSuite_virtio_user_for_container_networking.py @@ -143,8 +143,6 @@ class TestVirtioUserForContainer(TestCase): start testpmd as vhost """ eal_param = self.dut.create_eal_parameters(cores=self.core_list_vhost_user, prefix='vhost', vdevs=["net_vhost0,iface=vhost-net,queues=%d,client=0" % self.queue_number]) - if self.check_2M_env: - eal_param += " --single-file-segments" command_line_client = self.dut.target + '/app/testpmd ' + eal_param + ' -- -i --nb-cores=%d' % self.nb_cores self.vhost_user.send_expect(command_line_client, 'testpmd> ', 30) self.vhost_user.send_expect('start', 'testpmd> ', 30) -- 1.8.3.1