From patchwork Thu May 19 08:33:28 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ling, WeiX" X-Patchwork-Id: 111395 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3C53AA0503; Thu, 19 May 2022 10:34:54 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2E05440150; Thu, 19 May 2022 10:34:54 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 6E99140140 for ; Thu, 19 May 2022 10:34:52 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1652949292; x=1684485292; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=pXpP16kzUKro2A7qslTAay0051aPFv+fypJDGsmBfKQ=; b=LRjl49sHirT8WXAxT202KLpcm6P23g70kJM5Og1ZBke/XlP4EohI427S EOiZqErzwqfmH+xq1hinBcbizspdXZPGT/zyXXePXMa2pQn2Yz+RP4i1S kJilA56ANLW2oYMtebyWdi7GPo4uZ6Y0/XJ3UAK/KUDpK4JBHmDOOElaB 2ulitptg+m2zI+rEy1k3pOZGAQAj2uteKFkQloaUIYK+pTBYRYEzR02tX iU/XSHJfvCIfSUmQ/nI3d4Cen9oo55UMQJeTKF+Yl0A0nHRCiNUTygrxZ JJRJNxSBAz1Ut+kh5De4RJeGeXlGgYYHdiDyQZ/6p8iZOYSIrpAiaGOBc g==; X-IronPort-AV: E=McAfee;i="6400,9594,10351"; a="358499923" X-IronPort-AV: E=Sophos;i="5.91,237,1647327600"; d="scan'208";a="358499923" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 May 2022 01:34:51 -0700 X-IronPort-AV: E=Sophos;i="5.91,237,1647327600"; d="scan'208";a="570091738" Received: from unknown (HELO localhost.localdomain) ([10.239.251.222]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 May 2022 01:34:49 -0700 From: Wei Ling To: dts@dpdk.org Cc: Wei Ling Subject: [dts][PATCH V1 0/5] migrate CBDMA related testcase to new testsuite Date: Thu, 19 May 2022 04:33:28 -0400 Message-Id: <20220519083328.2816683-1-weix.ling@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 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 Because of the CBDMA testcases need DPDK local patch can test, from DTS 22.03, we plan to migrate CBDMA related testcases to new testsuite, for example, migrate CBDMA related testcase from vhost_event_idx_interrupt suite to vhost_event_idx_interrupt_cbdma suite. Wei Ling (5): test_plans/index: add vhost_event_idx_interrupt_cbdma testsuite test_plans/vhost_event_idx_interrupt_test_plan: migrate CBDMA related testcase to new testsuite tests/vhost_event_idx_interrupt: migrate CBDMA related testcase to new testsuite test_plans/vhost_event_idx_interrupt_cbdma_test_plan: add new testsuite for CBDMA related testcases tests/vhost_event_idx_interrupt_cbdma: new testsuite for CBDMA related testcases test_plans/index.rst | 1 + ...st_event_idx_interrupt_cbdma_test_plan.rst | 281 +++++++++++ .../vhost_event_idx_interrupt_test_plan.rst | 232 --------- tests/TestSuite_vhost_event_idx_interrupt.py | 170 +------ ...stSuite_vhost_event_idx_interrupt_cbdma.py | 460 ++++++++++++++++++ 5 files changed, 750 insertions(+), 394 deletions(-) create mode 100644 test_plans/vhost_event_idx_interrupt_cbdma_test_plan.rst create mode 100644 tests/TestSuite_vhost_event_idx_interrupt_cbdma.py