From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id E7EACA0471 for ; Mon, 17 Jun 2019 14:52:43 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B6E0A1BF03; Mon, 17 Jun 2019 14:52:43 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 970301BF02 for ; Mon, 17 Jun 2019 14:52:42 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x5HCdhpS010498 for ; Mon, 17 Jun 2019 05:52:41 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-type; s=pfpt0818; bh=xygKEp+qtFXnlx5/ytClCEoYTr+bsOI0RmKyUK+/5t0=; b=Yk+rZwU/ZR77fcAsT/DG8M+g0a9UDXKwVOYBtTKOvyfvjND2HeB2eAaRn/fKY8cdpzVA QG7yUTatUk8/ycfv6YZQZ6F8VI/lQt89zEQkRgBKBD/hL3n7d6ZDIDVl3rbOlRMzSBeL wmiJ2fXP7aHNZnksoIvNgUViJqABddmC6uAOv527J1Imh4h6xoI6TUI09DCHrKEFQNe4 BbxYJZQkPZn87UyzPlQ0+aFGjfRbiKXraTMq+SAZopMOcLQX7Tj1vvA0sw/X4+rTiLKk 1DJxbxVKkiHyZziSkx6Q3hNlVNuNlXDFlnXhzO9qzBz5jWiHA9RmN9pQviI6/ODjb1lW 7w== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0b-0016f401.pphosted.com with ESMTP id 2t506hxmfv-3 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Mon, 17 Jun 2019 05:52:40 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH04.marvell.com (10.93.176.84) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Mon, 17 Jun 2019 05:52:03 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Mon, 17 Jun 2019 05:52:03 -0700 Received: from phanendra-system.marvell.com (unknown [10.28.11.20]) by maili.marvell.com (Postfix) with ESMTP id 989573F703F; Mon, 17 Jun 2019 05:52:02 -0700 (PDT) From: To: CC: , , Phanendra Vukkisala Date: Mon, 17 Jun 2019 18:21:59 +0530 Message-ID: <1560775919-29846-1-git-send-email-pvukkisala@marvell.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-06-17_06:, , signatures=0 Subject: [dts] [PATCH] mac_filter: Support this test in vector mode 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" From: Phanendra Vukkisala Signed-off-by: Phanendra Vukkisala --- tests/TestSuite_mac_filter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_mac_filter.py b/tests/TestSuite_mac_filter.py index 87b5dec..9b896b4 100644 --- a/tests/TestSuite_mac_filter.py +++ b/tests/TestSuite_mac_filter.py @@ -49,7 +49,7 @@ class TestMacFilter(TestCase): Two Ports testpmd can normally started """ - self.frames_to_send = 1 + self.frames_to_send = 4 # Based on h/w type, choose how many ports to use self.dutPorts = self.dut.get_ports() # Verify that enough ports are available @@ -88,7 +88,7 @@ class TestMacFilter(TestCase): itf = self.tester.get_interface(self.tester.get_local_port(portid)) pkt = Packet(pkt_type='UDP') pkt.config_layer('ether', {'src': '52:00:00:00:00:00', 'dst': destMac}) - pkt.send_pkt(tx_port=itf) + pkt.send_pkt(tx_port=itf, count=4) def test_add_remove_mac_address(self): """ -- 1.7.9.5