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 51A2AA05DC for ; Mon, 10 Jun 2019 07:57:19 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1ADC41BE26; Mon, 10 Jun 2019 07:57:19 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 5CB9B1BE21 for ; Mon, 10 Jun 2019 07:57:17 +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 x5A5o6VC002628 for ; Sun, 9 Jun 2019 22:57:16 -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=OT2v2mMTMz09XzciJlXWWpPTsbxB1OT6qXvoDGmqN0M=; b=Ja99PiyIsnsZcXmlgHlnSs0Ssy8lCpcwEiDEZV2cZmxSBpO5lmRAsHM+OmjbMTH08uaQ LciXhyFjbrXUaK4x/JSalZoeubWFg8k9beOm6/sgONFy2+vJIM+203/bpJqCuHkuUyBx 6cogMbf1WlW9y2vVvyu60rcqkFtHeFxt2paeWnjDRv0jvtTVcEBGJfhqnDcP72eOJzaC lxa16VA/owP78Lv3OKdpUpb2oL0cYLSOKNEoP55EYyC4iCEm4+1ZD0zaIRodPPs8c+UN +eFKzsZpB3qXTa/JOLDMHewxkQfYPvnGwbkMIxdSjZjftYeIE2KHuOEb7LGTxLjsSQ2x lw== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0a-0016f401.pphosted.com with ESMTP id 2t0acndke3-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Sun, 09 Jun 2019 22:57:16 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Sun, 9 Jun 2019 22:57:15 -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, 9 Jun 2019 22:57:15 -0700 Received: from localhost.marvell.com (unknown [10.28.10.195]) by maili.marvell.com (Postfix) with ESMTP id 484643F7040; Sun, 9 Jun 2019 22:57:14 -0700 (PDT) From: To: CC: , , Praneeth Reddy Date: Mon, 10 Jun 2019 11:27:11 +0530 Message-ID: <1560146231-30504-1-git-send-email-nareddy@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-10_03:, , signatures=0 Subject: [dts] [PATCH] TestSuite_short_live.py: Modified send packet count 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: Praneeth Reddy In vector mode 4 packets are required. Modified packet count to 4 in all test cases. Signed-off-by: Praneeth Reddy --- tests/TestSuite_short_live.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_short_live.py b/tests/TestSuite_short_live.py index c18dac4..93ec587 100644 --- a/tests/TestSuite_short_live.py +++ b/tests/TestSuite_short_live.py @@ -106,7 +106,7 @@ class TestShortLiveApp(TestCase): pktlen = pktSize - 14 padding = pktlen - 20 - self.tester.scapy_append('sendp([Ether(src="%s", dst="%s")/IP()/Raw(load="P"*%s)], iface="%s")' % (smac, dmac, padding, txitf)) + self.tester.scapy_append('sendp([Ether(src="%s", dst="%s")/IP()/Raw(load="P"*%s)], iface="%s", count=4)' % (smac, dmac, padding, txitf)) self.tester.scapy_execute() time.sleep(3) -- 1.8.3.1