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 F0A18A00E6 for ; Mon, 10 Jun 2019 14:26:05 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CBB1F1C035; Mon, 10 Jun 2019 14:26:05 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id F0B431BFEE for ; Mon, 10 Jun 2019 14:26:04 +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 x5ACDgaO007663 for ; Mon, 10 Jun 2019 05:26:03 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=pfpt0818; bh=N+VgoNxFSfk1GGyFAgSiVdL+OCoZnBgbhomhJCtIil8=; b=TRs8gVCV+JE2Y9Ea9idO7/LhSTlz0t4SSCkHPJBrUd4ZMgoNCJtWsJ60Du28IbL357UY zpodzzP4ufL8oOvZmQfNt2QMp4fsTgHoCngzEBTjziRWWmtCTqizMNtFoVThMYliIrOi rcPB/tTh5OrIBNl4DkvCZnhrnzWdOh353IYZcyMOwC8ZNrOJpsvdI41RS637gXzS0otO UOqmghpkkrUcUqvlg6kITg9uRJg6IBvrogMxHx14LPzcxq/gb3/S1Fum5vkCzAnSUqnx mZ6OzbJeyJXiTpJwUhfxSey5ZPb/ACsYA7Q0aDwabPDknbmAhns2KFSAGryxoRRG3/aB NA== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0b-0016f401.pphosted.com with ESMTP id 2t0chjxavq-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Mon, 10 Jun 2019 05:26:03 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH04.marvell.com (10.93.176.84) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Mon, 10 Jun 2019 05:26:02 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Mon, 10 Jun 2019 05:26:02 -0700 Received: from thaq.marvell.com (unknown [10.28.10.34]) by maili.marvell.com (Postfix) with ESMTP id DA7793F703F; Mon, 10 Jun 2019 05:26:00 -0700 (PDT) From: To: CC: , , , Thanseerulhaq Date: Mon, 10 Jun 2019 17:55:29 +0530 Message-ID: <1560169529-16576-1-git-send-email-thaq@marvell.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1559287890-27187-1-git-send-email-thaq@marvell.com> References: <1559287890-27187-1-git-send-email-thaq@marvell.com> MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-06-10_06:, , signatures=0 Subject: [dts] [PATCH v3] Adding Eventdev_pipeline feature performance Testscript 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 TestSuite_eventdev_pipeline_perf.py: Adding performance testscripts for 1/2/4 NIC ports for eventdev_pipeline features atomic, parallel, order stages. Signed-off-by: Thanseerulhaq --- tests/TestSuite_eventdev_pipeline_perf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/TestSuite_eventdev_pipeline_perf.py b/tests/TestSuite_eventdev_pipeline_perf.py index 1c23859..54c8381 100644 --- a/tests/TestSuite_eventdev_pipeline_perf.py +++ b/tests/TestSuite_eventdev_pipeline_perf.py @@ -293,6 +293,7 @@ class TestEventdevPipelinePerf(TestCase,IxiaPacketGenerator): payload_size = frame_size - self.headers_size self.tester.scapy_append( 'wrpcap("event_test.pcap", [Ether(src="52:00:00:00:00:00")/IP(src="1.2.3.4",dst="1.1.1.1")/TCP()/("X"*%d)])' % (payload_size)) + self.tester.scapy_execute() # run traffic generator _, pps = self.tester.traffic_generator_throughput(tgen_input, rate_percent=100, delay=60) -- 1.8.3.1