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 5938FA00E6 for ; Wed, 12 Jun 2019 14:34:07 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EAC781D023; Wed, 12 Jun 2019 14:34:06 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 552B61D006 for ; Wed, 12 Jun 2019 14:34:05 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x5CCUhwg017956 for ; Wed, 12 Jun 2019 05:34:04 -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=kLPWB/vR7YTiFRAg8Y2NF5SmWyXPgyhGymuIn/M7DVk=; b=dBPwCkXh/0YUk+1O3JFqqWxcJLtFx5L4jSmjy2PeNmeg7FhsyfMPzEMTb4KxpH6MOTV9 oQiTCZg7UPkxqlT9m2B3LnvbYFPMJItlBQ/TsXi1EiRANuJypjTfas0bjuJF/gTEerU0 g5BFnVWbJDAl3zCaQv0C+9YDj3X1Im5pcIaJKWlxVOQDcLQtgNDCzZ6I4k3kuFBqqmZJ Xi96t/1Qtgw0e+1UK8QcUlflgiImy0pYGoEU4RjD14MrNmKkRqbX4+BgZWI2N6Ti3jpb T0OjoPjKexGKI1Yw08s3x0W+UFqVoNxT4tgG3A6muN3iBTHvnThj2BJ7dAHj/+kQGUUG UA== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0a-0016f401.pphosted.com with ESMTP id 2t2ukn1h43-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Wed, 12 Jun 2019 05:34:04 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Wed, 12 Jun 2019 05:34: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; Wed, 12 Jun 2019 05:34:03 -0700 Received: from phanendra-system.marvell.com (unknown [10.28.11.20]) by maili.marvell.com (Postfix) with ESMTP id 53A433F7043; Wed, 12 Jun 2019 05:34:02 -0700 (PDT) From: To: CC: , , Phanendra Vukkisala Date: Wed, 12 Jun 2019 18:03:59 +0530 Message-ID: <1560342839-24926-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-12_07:, , signatures=0 Subject: [dts] [PATCH] link_flowctrl: Send packet in multiples of 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: Phanendra Vukkisala Signed-off-by: Phanendra Vukkisala --- tests/TestSuite_link_flowctrl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_link_flowctrl.py b/tests/TestSuite_link_flowctrl.py index 8961512..d2a0929 100644 --- a/tests/TestSuite_link_flowctrl.py +++ b/tests/TestSuite_link_flowctrl.py @@ -52,7 +52,7 @@ class TestLinkFlowctrl(TestCase): pause_frame = '[Ether(src="%s",dst="%s",type=%s)/("%s%s%s")]' - frames_to_sent = 10 + frames_to_sent = 12 packet_size = 66 # 66 allows frame loss payload_size = packet_size - HEADER_SIZE['eth'] - HEADER_SIZE['ip'] - HEADER_SIZE['udp'] -- 1.7.9.5