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 C363AA04F3; Fri, 6 Dec 2019 09:37:36 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BA3A71BF7B; Fri, 6 Dec 2019 09:37:36 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 4154E23D for ; Fri, 6 Dec 2019 09:37:35 +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 fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Dec 2019 00:37:34 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,283,1571727600"; d="scan'208";a="243563755" Received: from unknown (HELO dpdk-xinfengx-dut242.sh.intel.com) ([10.67.116.161]) by fmsmga002.fm.intel.com with ESMTP; 06 Dec 2019 00:37:33 -0800 From: Xinfeng Zhao To: dts@dpdk.org Cc: Xinfeng Zhao Date: Fri, 6 Dec 2019 08:25:01 +0800 Message-Id: <1575591901-198081-2-git-send-email-xinfengx.zhao@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1575591901-198081-1-git-send-email-xinfengx.zhao@intel.com> References: <1575591901-198081-1-git-send-email-xinfengx.zhao@intel.com> Subject: [dts] [PATCH V1 2/2] tests/metering_and_policing: modify the test command for softnic 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: Xinfeng Zhao --- tests/TestSuite_metering_and_policing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_metering_and_policing.py b/tests/TestSuite_metering_and_policing.py index ef8c419..73bcdbb 100644 --- a/tests/TestSuite_metering_and_policing.py +++ b/tests/TestSuite_metering_and_policing.py @@ -155,8 +155,8 @@ class TestMeteringAndPolicing(TestCase): Corelist = "0x1f" Servicecorelist = "0x10" self.path = "./%s/app/testpmd" % self.target - cmd = self.path + " -c %s -s %s -n %d --vdev 'net_softnic0,firmware=%s,cpu_id=0,conn_port=8086' \ - -- -i --rxq=%d --txq=%d --portmask=%s" \ + cmd = self.path + " -c %s -s %s -n %d --vdev 'net_softnic0,firmware=%s' \ + -- -i --rxq=%d --txq=%d --portmask=%s --disable-rss" \ % (Corelist, Servicecorelist, self.dut.get_memory_channels(), filename, self.port_id, self.port_id, portmask) self.dut.send_expect(cmd, "testpmd>", 60) -- 2.17.1