From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id BA69E3237 for ; Wed, 20 Jul 2016 08:26:45 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP; 19 Jul 2016 23:26:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,392,1464678000"; d="scan'208";a="1025328605" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga002.fm.intel.com with ESMTP; 19 Jul 2016 23:26:45 -0700 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id u6K6Qdu6031036; Wed, 20 Jul 2016 14:26:39 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id u6K6Qbct030403; Wed, 20 Jul 2016 14:26:39 +0800 Received: (from yufengmx@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id u6K6QbCx030399; Wed, 20 Jul 2016 14:26:37 +0800 From: Yufen Mo To: dts@dpdk.org Cc: yufengmx Date: Wed, 20 Jul 2016 14:26:34 +0800 Message-Id: <1468995994-30361-2-git-send-email-yufengx.mo@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1468995994-30361-1-git-send-email-yufengx.mo@intel.com> References: <1468995994-30361-1-git-send-email-yufengx.mo@intel.com> Subject: [dts] [PATCH V1]Uni_pkt: add enable-rx-cksum option to avoid i40e vector issue 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: Wed, 20 Jul 2016 06:26:46 -0000 From: yufengmx i40e vector issue(CONFIG_RTE_LIBRTE_I40E_INC_VECTOR=y) block packet layers' output information Signed-off-by: yufengmx --- tests/TestSuite_uni_pkt.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/TestSuite_uni_pkt.py b/tests/TestSuite_uni_pkt.py index 429546a..7c34dcb 100644 --- a/tests/TestSuite_uni_pkt.py +++ b/tests/TestSuite_uni_pkt.py @@ -64,7 +64,8 @@ class TestUniPacket(TestCase): tester_port = self.tester.get_local_port(self.dut_port) self.tester_iface = self.tester.get_interface(tester_port) self.dut.send_expect( - "./%s/app/testpmd -c f -n 4 -- -i --txqflags=0x0" % self.target, "testpmd>", 20) + # "./%s/app/testpmd -c f -n 4 -- -i --txqflags=0x0" % self.target, "testpmd>", 20) + "./%s/app/testpmd -c f -n 4 -- -i --enable-rx-cksum" % self.target, "testpmd>", 20)# for i40e vector issue, use this format self.dut.send_expect("set fwd rxonly", "testpmd>") self.dut.send_expect("set verbose 1", "testpmd>") self.dut.send_expect("start", "testpmd>") -- 1.9.3