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 E60D3A04C2; Mon, 25 Nov 2019 09:43:07 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BF8712952; Mon, 25 Nov 2019 09:43:07 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 3F52628EE for ; Mon, 25 Nov 2019 09:43:06 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Nov 2019 00:43:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,241,1571727600"; d="scan'208";a="211035112" Received: from npg-dpdk-stv-wanzhe-compression-clc.sh.intel.com ([10.67.119.120]) by orsmga006.jf.intel.com with ESMTP; 25 Nov 2019 00:43:03 -0800 From: Zhe To: dts@dpdk.org Cc: Zhe Wan Date: Mon, 25 Nov 2019 11:25:10 -0500 Message-Id: <1574699110-57663-1-git-send-email-zhe.wan@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V1] test_plans: add new test cases for compressdev_isal_pmd 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: Zhe Wan Signed-off-by: Zhe Wan --- test_plans/compressdev_isal_pmd_test_plan.rst | 40 +++++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/test_plans/compressdev_isal_pmd_test_plan.rst b/test_plans/compressdev_isal_pmd_test_plan.rst index 59a59f2..f86a2a5 100644 --- a/test_plans/compressdev_isal_pmd_test_plan.rst +++ b/test_plans/compressdev_isal_pmd_test_plan.rst @@ -66,7 +66,7 @@ Start test application and run isal pmd unit test:: Verify all test cases passed in the test. -Test Case: Compressdev ISA-L PMD test +Test Case: Compressdev ISA-L PMD fixed function test --------------------------------------------------------- Run Compressdev isal pmd test with below sample commands:: @@ -74,6 +74,42 @@ Run Compressdev isal pmd test with below sample commands:: --vdev=compress_isal -- --driver-name compress_isal --input-file file_name \ --compress-level level --num-iter number --huffman-enc fixed -Perform the test with huffman-enc fixed and dynamic accordingly. +Perform the test with fixed huffman-enc. Test all the file types in calgary corpus, all files should pass the test. + +Test Case: Compressdev ISA-L PMD dynamic function test +--------------------------------------------------------- +Run Compressdev isal pmd test with below sample commands:: + + ./app/dpdk-test-compress-perf -w vdev_bus_id -l 4 \ + --vdev=compress_isal -- --driver-name compress_isal --input-file file_name \ + --compress-level level --num-iter number --huffman-enc dynamic + +Perform the test with dynamic huffman-enc. + +Test all the file types in calgary corpus, all files should pass the test. + +Test Case: Compressdev ISA-L PMD fixed performance test +----------------------------------------------------------- +Run Compressdev isal pmd performance test with below sample commands:: + + ./app/dpdk-test-compress-perf -w vdev_bus_id -l 4 \ + --vdev=compress_isal -- --driver-name compress_isal --input-file file_name \ + --compress-level level --seg-sz size --num-iter number --huffman-enc fixed + +Perform the test with fixed huffman-enc and calgary file. + +Run the test with seg-sz 1k, 2k, 4k, 8k, 16k and 32k respectively. + +Test Case: Compressdev ISA-L PMD dynamic performance test +---------------------------------------------------------------- +Run Compressdev isal pmd performance test with below sample commands:: + + ./app/dpdk-test-compress-perf -w vdev_bus_id -l 4 \ + --vdev=compress_isal -- --driver-name compress_isal --input-file file_name \ + --compress-level level --seg-sz size --num-iter number --huffman-enc dynamic + +Perform the test with dynamic huffman-enc and calgary file. + +Run the test with seg-sz 1k, 2k, 4k, 8k, 16k and 32k respectively. -- 1.8.3.1