From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id A853EA2EDB for ; Tue, 1 Oct 2019 14:46:21 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 70E934C74; Tue, 1 Oct 2019 14:46:21 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 44ABA397D for ; Tue, 1 Oct 2019 14:46:19 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id x91Cj73s008211 for ; Tue, 1 Oct 2019 05:46: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=gks/OiSNiEhyzzRvWD+H8iM2V8G1+gI0ddgQE0Ex/8s=; b=E5zjerFZqEDF8lOEPNmsP8da5ruTr5wGBkE4czUq3jAIlRG+VomAQmQurPyc1Wne75S1 7QR03brVnQai4sV33RDH6W2Jf6yBl3q4/TTzMhnSgL4f4X3uyFjo/NmxyqMKNzQE5+hx ojNocMN/h1xFe7MNu6XONd/KkLueORc98ipEOV0gn089nabnrh9JDsOGRHK7M34bTMDx VXCGoRD0aq/KHPJlOgRWjLsm3gveMnjnC1asy34MQo+5UvgYzDokc0sMaSqCNdhozpms OHunQKSOhWN0/JfJcP6fuURggOCQ56ZuKF9//GfXOYXqhxRvqAMS4SuXZAEOUR86a69U og== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0a-0016f401.pphosted.com with ESMTP id 2vbur1a892-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Tue, 01 Oct 2019 05:46:18 -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; Tue, 1 Oct 2019 05:46:17 -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; Tue, 1 Oct 2019 05:46:17 -0700 Received: from phanendra-system.marvell.com (unknown [10.28.11.20]) by maili.marvell.com (Postfix) with ESMTP id D715D3F703F; Tue, 1 Oct 2019 05:46:15 -0700 (PDT) From: To: CC: , , Phanendra Vukkisala Date: Tue, 1 Oct 2019 18:16:09 +0530 Message-ID: <1569933969-2194-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:6.0.95,1.0.8 definitions=2019-10-01_06:2019-10-01,2019-10-01 signatures=0 Subject: [dts] [PATCH] tx_preparation: support vector in this test 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_tx_preparation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_tx_preparation.py b/tests/TestSuite_tx_preparation.py index ba0aac7..6d12724 100644 --- a/tests/TestSuite_tx_preparation.py +++ b/tests/TestSuite_tx_preparation.py @@ -139,7 +139,7 @@ class TestTX_preparation(TestCase): for packet_type in pkts.keys(): self.start_tcpdump(self.tester_intf) self.tester.scapy_append( - 'sendp([%s], iface="%s")' % (pkts[packet_type], self.tester_intf)) + 'sendp([%s], iface="%s", count=4)' % (pkts[packet_type], self.tester_intf)) self.tester.scapy_execute() out = self.get_tcpdump_package() if packet_type == 'IPv6/cksum UDP': -- 1.7.9.5