From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 779D65F2A for ; Thu, 15 Mar 2018 07:16:37 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Mar 2018 23:16:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,308,1517904000"; d="scan'208";a="42188929" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.240.176.135]) by orsmga002.jf.intel.com with ESMTP; 14 Mar 2018 23:16:34 -0700 From: "lu,peipei" To: dts@dpdk.org Cc: "lu,peipei" Date: Thu, 15 Mar 2018 14:17:48 +0800 Message-Id: <1521094668-84213-1-git-send-email-peipeix.lu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] tests/generic_filter: fix 128 queues failed 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: , X-List-Received-Date: Thu, 15 Mar 2018 06:16:37 -0000 remove parameter "--total-num-mbufs". the total_mbufs default was 128. please refer to dpdk fadd37f. Signed-off-by: lu,peipei --- tests/TestSuite_generic_filter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_generic_filter.py b/tests/TestSuite_generic_filter.py index e62e351..276c10f 100644 --- a/tests/TestSuite_generic_filter.py +++ b/tests/TestSuite_generic_filter.py @@ -696,7 +696,7 @@ class TestGeneric_filter(TestCase): global valports total_mbufs = self.request_mbufs(128) * len(valports) self.pmdout.start_testpmd( - "all", "--disable-rss --rxq=128 --txq=128 --portmask=%s --nb-cores=4 --total-num-mbufs=%d" % (portMask, total_mbufs)) + "all", "--disable-rss --rxq=128 --txq=128 --portmask=%s --nb-cores=4" % portMask) self.dut.send_expect( "set stat_qmap rx %s 0 0" % valports[0], "testpmd> ") self.dut.send_expect( -- 1.9.3