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 26722A034C; Tue, 10 May 2022 03:51:13 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0052A410EE; Tue, 10 May 2022 03:51:13 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id EFF4340DDA for ; Tue, 10 May 2022 03:51:10 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1652147471; x=1683683471; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=NPDvb5nxQco/WO7sTGM3en5vbbm4hHUMcF7aCCcHs4I=; b=gpc2Z9E1z7mjVSC+3g22WEHsYduNTveVQOlVRMK2ZcIKCFul6SIB5YGD xvHnmDhbHXan7QIDhMe3o8U86u2v+dtCHUXg9EXrV/E90B5VrMtnongzR ikr6QafM99dcGsgXm8g99fOx+KXjG2UKWdSOj2IofmxcjaajRBjdhisAc lGI7flgKIYIAQv/HCGLcC3IaCRhvhxROzWmk2oilBtGwxMJPevRb0mn9K QucDUz4caAqnyfJFDlo1PbSlUyEfVJPu3lcxNH+uPY7pAApVjTBKgbori stHMhz7L/CJeuwOE+9FXxiU5yeoilcl7DE99b1OAfMxCynsyDTyRgkigg g==; X-IronPort-AV: E=McAfee;i="6400,9594,10342"; a="269365169" X-IronPort-AV: E=Sophos;i="5.91,213,1647327600"; d="scan'208";a="269365169" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 May 2022 18:51:09 -0700 X-IronPort-AV: E=Sophos;i="5.91,213,1647327600"; d="scan'208";a="565387927" Received: from unknown (HELO localhost.localdomain) ([10.239.251.222]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 May 2022 18:51:07 -0700 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Subject: [dts][PATCH V3 0/3] add dpdk_gro_lib_cbdma Date: Mon, 9 May 2022 21:50:17 -0400 Message-Id: <20220510015017.327529-1-weix.ling@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 As commit 53d3f4778c(vhost: integrate dmadev in asynchronous data-path), add new testsuite dpdk_gro_lib_cbdma for coverage the DPDK GRO Lib test with TCP/IPv4 traffic with CBDMA. Currently, we need to modify DPDK code and re-complie to test, after the developer's patch been merged, we will delete the modify DPDK code step. 1) Add new testplan dpdk_gro_lib_cbdma_test_plan into test_plans/index.rst. 2) Add new testplan test_plans/dpdk_gro_lib_cbdma_test_plan into test_plans. 3) Add new testsuite tests/TestSuite_dpdk_gro_lib_cbdma.py into tests. Wei Ling (3): test_plans/index: add dpdk_gro_lib_cbdma test_plans/dpdk_gro_lib_cbdma_test_plan: add dpdk_gro_lib_cbdma testplan tests/dpdk_gro_lib_cbdma: add dpdk_gro_lib_cbdma testsuite test_plans/dpdk_gro_lib_cbdma_test_plan.rst | 185 ++++++++++++ test_plans/index.rst | 1 + tests/TestSuite_dpdk_gro_lib_cbdma.py | 302 ++++++++++++++++++++ 3 files changed, 488 insertions(+) create mode 100644 test_plans/dpdk_gro_lib_cbdma_test_plan.rst create mode 100644 tests/TestSuite_dpdk_gro_lib_cbdma.py -- 2.25.1