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 28B95A0569; Thu, 12 Mar 2020 10:29:18 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0A9B31C01B; Thu, 12 Mar 2020 10:29:18 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 653061C014 for ; Thu, 12 Mar 2020 10:29:16 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Mar 2020 02:29:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,544,1574150400"; d="scan'208";a="277732166" Received: from unknown (HELO dpdk-wenjielx-dtspatch135.sh.intel.com) ([10.240.176.135]) by fmsmga002.fm.intel.com with ESMTP; 12 Mar 2020 02:29:14 -0700 From: Xie Wei To: dts@dpdk.org Cc: Xie Wei Date: Thu, 12 Mar 2020 17:34:39 +0800 Message-Id: <1584005679-37807-1-git-send-email-weix.xie@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] tests/virtio_user_as_exceptional_path:fix eal_params 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: Xie Wei --- tests/TestSuite_virtio_user_as_exceptional_path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_virtio_user_as_exceptional_path.py b/tests/TestSuite_virtio_user_as_exceptional_path.py index c1af852..edcc963 100644 --- a/tests/TestSuite_virtio_user_as_exceptional_path.py +++ b/tests/TestSuite_virtio_user_as_exceptional_path.py @@ -114,7 +114,7 @@ class TestVirtioUserAsExceptionalPath(TestCase): core_mask = cores_list[0:2] testcmd = self.target + "/app/testpmd " vdev = "--vdev=virtio_user0,mac=%s,path=/dev/vhost-net," % self.virtio_mac - eal_params = self.dut.create_eal_parameters(cores=core_mask, ports=[self.pci0]) + eal_params = self.dut.create_eal_parameters(cores=core_mask, ports=[self.pci]) para = " queue_size=1024,queues=%s -- -i --rxd=1024 --txd=1024 %s" % (self.queue, comment) self.testcmd_start = testcmd + eal_params + vdev + para self.vhost_user = self.dut.new_session(suite="user") -- 2.17.2