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 6F3B5A04A4; Tue, 26 May 2020 09:44:28 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4B0431DA1E; Tue, 26 May 2020 09:44:28 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 5F2191DA1D for ; Tue, 26 May 2020 09:44:26 +0200 (CEST) IronPort-SDR: yL/aGt2te5SziZGRjfkr5U1Z6d+QIxHEWee7CL8Zn2XrZWHzGGxXJBUnqSyopLCo1uYBdRhu8t QGPlyeez9dWQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 May 2020 00:44:26 -0700 IronPort-SDR: DVIiZaaehyI3ITNKQYMIEqNAbpassJpjSRa7DAkkxQN5MxzPXox9Mwx1akRwN+6usioc6rCfVw Pl32xaBNdwTQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,436,1583222400"; d="scan'208";a="284344680" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by orsmga002.jf.intel.com with ESMTP; 26 May 2020 00:44:25 -0700 Received: from shsmsx604.ccr.corp.intel.com (10.109.6.214) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.439.0; Tue, 26 May 2020 00:44:25 -0700 Received: from shsmsx602.ccr.corp.intel.com (10.109.6.142) by SHSMSX604.ccr.corp.intel.com (10.109.6.214) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Tue, 26 May 2020 15:44:23 +0800 Received: from shsmsx602.ccr.corp.intel.com ([10.109.6.142]) by SHSMSX602.ccr.corp.intel.com ([10.109.6.142]) with mapi id 15.01.1713.004; Tue, 26 May 2020 15:44:23 +0800 From: "Zhao, XinfengX" To: "dts@dpdk.org" CC: "Wan, Zhe" Thread-Topic: [dts][PATCH V1 2/2] tests/compressdev_qat_pmd: add new cases in test script Thread-Index: AQHWL0qNIJK5zoo0/0iyvRpgQYjjvqi6BAPw Date: Tue, 26 May 2020 07:44:23 +0000 Message-ID: References: <20200521083235.21329-1-xinfengx.zhao@intel.com> <20200521083235.21329-2-xinfengx.zhao@intel.com> In-Reply-To: <20200521083235.21329-2-xinfengx.zhao@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.36] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dts] [PATCH V1 2/2] tests/compressdev_qat_pmd: add new cases in test script 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" Tested-by: Zhao, Xinfeng -----Original Message----- From: Zhao, XinfengX=20 Sent: Thursday, May 21, 2020 4:33 PM To: dts@dpdk.org Cc: Zhao, XinfengX Subject: [dts][PATCH V1 2/2] tests/compressdev_qat_pmd: add new cases in te= st script Signed-off-by: xinfengx --- tests/TestSuite_compressdev_qat_pmd.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/TestSuite_compressdev_qat_pmd.py b/tests/TestSuite_compr= essdev_qat_pmd.py index 696ad1d..601ed62 100644 --- a/tests/TestSuite_compressdev_qat_pmd.py +++ b/tests/TestSuite_compressdev_qat_pmd.py @@ -123,6 +123,18 @@ class TestCompressdevQatPmd(TestCase): "seg-sz": 2048, "external-mbufs": '', "extended-input-sz": 300= 000}) result =3D cc.run_compress_func(self) =20 + def test_qat_pmd_im_fixed_func(self): + cc.default_eals['w'] =3D ' -w '.join(self.get_perf_default_device(= )) + cc.default_opts.update({"huffman-enc": "fixed", "seg-sz": 59460, + "max-num-sgl-segs": 54, "extended-input-sz": 3251493}) + result =3D cc.run_compress_func(self) + + def test_qat_pmd_im_dynamic_func(self): + cc.default_eals['w'] =3D ' -w '.join(self.get_perf_default_device(= )) + cc.default_opts.update({"huffman-enc": "dynamic", "seg-sz": 59460, + "max-num-sgl-segs": 54, "extended-input-sz": 3251493}) + result =3D cc.run_compress_func(self) + def test_qat_pmd_fixed_perf(self): cc.default_eals['w'] =3D ' -w '.join(self.get_perf_default_device(= )) cc.default_opts.update({"huffman-enc": "fixed", "extended-input-sz= ": 3244032, --=20 2.17.1