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 4A8D9A0471 for ; Mon, 17 Jun 2019 08:50:21 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1DC471BD44; Mon, 17 Jun 2019 08:50:21 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 62B691BD41 for ; Mon, 17 Jun 2019 08:50:19 +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 x5H6kcjs018934 for ; Sun, 16 Jun 2019 23:50:18 -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=1y3yDXEB8Fy+1miNAAR2CPuFLiZPJ3QpIXMiKnrk/FI=; b=eFeDBhmtF+eUEs3fSsSmWdc+2/I4CqEeknlLmnyJMTC3pem80KqFbJCfGBlJxcv2XuFS fv6PIwqJbG3xT4jnmj++RCaSE2zqPtsuOeLG3XxBVZ/FaFvi23nTI9R7kIaXekQUBzEB XntcbQSSQwUaw/UDJ0BQF8mLLGaroNVsVsiWxtXNnRPFLpioK/arG2i4H9VC9OKNrq36 9GawRh6yWiZebw8NhjNshAO+pIhD4vDhsuKDrL2gPn8loggWxPPOBiRImdovRcdIpmzr i5KVzvaoDeTR+jATuPZ/TTM/IOeDSFGg00T+rmQ04DEqnpoeeALiR8cl7nfsi7H+y2Dw SA== Received: from sc-exch03.marvell.com ([199.233.58.183]) by mx0b-0016f401.pphosted.com with ESMTP id 2t506hwkc0-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Sun, 16 Jun 2019 23:50:18 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Sun, 16 Jun 2019 23:50:16 -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; Sun, 16 Jun 2019 23:50:16 -0700 Received: from thaq.marvell.com (unknown [10.28.10.34]) by maili.marvell.com (Postfix) with ESMTP id 57A223F7040; Sun, 16 Jun 2019 23:50:15 -0700 (PDT) From: To: CC: , , Thanseerulhaq Date: Mon, 17 Jun 2019 12:19:46 +0530 Message-ID: <1560754186-1238-1-git-send-email-thaq@marvell.com> X-Mailer: git-send-email 1.8.3.1 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-06-17_04:, , signatures=0 Subject: [dts] [PATCH] tests/TestSuite_vlan.py: setting Send packet count as 4 to support 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: Thanseerulhaq Signed-off-by: Thanseerulhaq --- tests/TestSuite_vlan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_vlan.py b/tests/TestSuite_vlan.py index 977da6e..c7b4b62 100644 --- a/tests/TestSuite_vlan.py +++ b/tests/TestSuite_vlan.py @@ -120,7 +120,7 @@ class TestVlan(TestCase): pkt.config_layer('ether', {'dst': self.dmac, 'src': self.smac}) pkt.config_layer('vlan', {'vlan': vid}) - pkt.send_pkt(tx_port=self.txItf) + pkt.send_pkt(tx_port=self.txItf, count=4) def set_up(self): """ -- 1.8.3.1