From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1067D423A1; Tue, 10 Jan 2023 09:24:55 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D70A140691; Tue, 10 Jan 2023 09:24:54 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id DECE540689 for ; Tue, 10 Jan 2023 09:24:52 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1673339093; x=1704875093; h=from:to:cc:subject:date:message-id; bh=hCz80GaYqwuYnDI11kg0pVVHJ1wlgFBUGyvkxQJi8fs=; b=DIIqXxLdSvkCYhKbGezlEGRIckiN49vemYgo2wb1Wmd/ZKLNLZYZ2Q6h zWZLeoQIDSLAscB6p+3TTiQj6uWl7IP+os2FumD3klEjdsJf6MCWu7uhv sIy3Eyt6byjGOWcEoIvMId/bzPTUfnL68EI+z2XHjSsWMRcNK8mMHSjGj TR28ejFA2C9BLTC5WMSicuupX3bT55atXQH5Uek6gtKVd1OL642WAunkw v4Eabn+SxJAX77QWBhUrTz81LM+YUGSF+RVhpQR0tPh0BkZm+xYNyn2dy ClvN66IeYmrwd/6/mVQpQghBhJD2GpognMnqtpJNnwko1dJ2/t62MuUC2 g==; X-IronPort-AV: E=McAfee;i="6500,9779,10585"; a="387543484" X-IronPort-AV: E=Sophos;i="5.96,314,1665471600"; d="scan'208";a="387543484" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Jan 2023 00:24:51 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10585"; a="799339175" X-IronPort-AV: E=Sophos;i="5.96,314,1665471600"; d="scan'208";a="799339175" Received: from unknown (HELO cvl_100g_103.icx.intel.com) ([10.239.252.93]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Jan 2023 00:24:50 -0800 From: Hongbo Li To: dts@dpdk.org Cc: Hongbo Li Subject: [dts][PATCH V3 0/8] split performance plan and suite Date: Wed, 11 Jan 2023 00:44:23 +0800 Message-Id: <20230110164431.19390-1-hongbox.li@intel.com> X-Mailer: git-send-email 2.17.1 X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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 split performance plan and suite Hongbo Li (8): tests/efd: split performance plan and suite tests/l2fwd: split performance plan and suite tests/tso: split performance plan and suite tests/vxlan: split performance plan and suite tests/ipfrag: split performance plan and suite tests/multiprocess: split performance plan and suite tests/checksum_offload: split performance plan and suite conf/test_case_checklist: split performance plan and suite test_plans/efd_test_plan.rst | 77 +- test_plans/index.rst | 6 + test_plans/ipfrag_test_plan.rst | 33 +- test_plans/l2fwd_test_plan.rst | 36 - test_plans/multiprocess_test_plan.rst | 48 - test_plans/perf_efd_test_plan.rst | 105 ++ test_plans/perf_ipfrag_test_plan.rst | 141 +++ test_plans/perf_l2fwd_test_plan.rst | 90 ++ test_plans/perf_multiprocess_test_plan.rst | 141 +++ test_plans/perf_tso_test_plan.rst | 87 ++ test_plans/perf_vxlan_test_plan.rst | 85 ++ test_plans/tso_test_plan.rst | 34 - test_plans/vxlan_test_plan.rst | 60 +- tests/TestSuite_checksum_offload.py | 54 -- tests/TestSuite_efd.py | 138 --- tests/TestSuite_ipfrag.py | 21 - tests/TestSuite_l2fwd.py | 106 -- tests/TestSuite_multiprocess.py | 210 ---- tests/TestSuite_perf_checksum_offload.py | 624 ++++++++++++ tests/TestSuite_perf_efd.py | 210 ++++ tests/TestSuite_perf_ipfrag.py | 386 ++++++++ tests/TestSuite_perf_l2fwd.py | 233 +++++ tests/TestSuite_perf_multiprocess.py | 994 +++++++++++++++++++ tests/TestSuite_perf_tso.py | 302 ++++++ tests/TestSuite_perf_vxlan.py | 1022 ++++++++++++++++++++ tests/TestSuite_tso.py | 113 --- tests/TestSuite_vxlan.py | 213 ---- 27 files changed, 4429 insertions(+), 1140 deletions(-) create mode 100644 test_plans/perf_efd_test_plan.rst create mode 100644 test_plans/perf_ipfrag_test_plan.rst create mode 100644 test_plans/perf_l2fwd_test_plan.rst create mode 100644 test_plans/perf_multiprocess_test_plan.rst create mode 100644 test_plans/perf_tso_test_plan.rst create mode 100644 test_plans/perf_vxlan_test_plan.rst create mode 100644 tests/TestSuite_perf_checksum_offload.py create mode 100644 tests/TestSuite_perf_efd.py create mode 100644 tests/TestSuite_perf_ipfrag.py create mode 100644 tests/TestSuite_perf_l2fwd.py create mode 100644 tests/TestSuite_perf_multiprocess.py create mode 100644 tests/TestSuite_perf_tso.py create mode 100644 tests/TestSuite_perf_vxlan.py -- 2.17.1