From patchwork Thu Jan 5 10:40:49 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jiale, SongX" X-Patchwork-Id: 121588 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 40581A00C2; Thu, 5 Jan 2023 03:43:10 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1DA92400EF; Thu, 5 Jan 2023 03:43:10 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 3F10440041 for ; Thu, 5 Jan 2023 03:43:08 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1672886588; x=1704422588; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=HNu53xhPpCwLpfJ1Eu/hm9TTc3kolaniNFEg7/xu6eA=; b=WRJFRM4f1BxfWo+bvoZlPC3M4ilij41ZN/RFg35kIH5B/jr6ntYJUV5n 7dGO/WXFTHfcHKZxlqOO9UsPWhshyTD9vyV9R/71XoJLD+sHJWFPFleGJ mqizczzmEhM2Ls5GVvsAFeG88nB5cQANNaXw+s4HR2+/uqSae1HEfJ8iy rMDCT6GPJC9xvkDEM8tZMdn4jNrh/Dv0mtGCi/GFdkTaJC7+/JbkOL+56 43oObmijhPLSaaA0lLoKeOw8KseA1/1Nrry/tzvXmalUyYBcDGUOelE7q yPomT9u8WVd/JEs29k7P3xUGVU8G0hCrZSbhBZjmALYLH+RWqweD0LVGp A==; X-IronPort-AV: E=McAfee;i="6500,9779,10580"; a="408351292" X-IronPort-AV: E=Sophos;i="5.96,301,1665471600"; d="scan'208";a="408351292" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Jan 2023 18:43:07 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10580"; a="718660472" X-IronPort-AV: E=Sophos;i="5.96,301,1665471600"; d="scan'208";a="718660472" Received: from unknown (HELO localhost.localdomain) ([10.239.252.20]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Jan 2023 18:43:06 -0800 From: Song Jiale To: dts@dpdk.org Cc: Song Jiale Subject: [dts] [PATCH V1 0/7] add cases to test vf bonding Date: Thu, 5 Jan 2023 10:40:49 +0000 Message-Id: <20230105104056.234069-1-songx.jiale@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 add testplan and suite to test vf bonding. Song Jiale (7): tests/vf_pmd_bonded: add case to test vf bonding test_plans/vf_pmd_bonded: add case to test vf bonding tests/vf_pmd_bonded_8023ad: add case to test vf bonding test_plans/vf_pmd_bonded_8023ad: add cases to test vf bonding tests/vf_pmd_stacked_bonded: add cases to test vf bonding test_plans/vf_pmd_stacked_bonded: add cases to test vf bonding test_plans/index: add 3 suite test_plans/index.rst | 3 + test_plans/vf_pmd_bonded_8023ad_test_plan.rst | 411 ++++ test_plans/vf_pmd_bonded_test_plan.rst | 523 ++++ .../vf_pmd_stacked_bonded_test_plan.rst | 406 ++++ tests/TestSuite_vf_pmd_bonded.py | 2152 +++++++++++++++++ tests/TestSuite_vf_pmd_bonded_8023ad.py | 650 +++++ tests/TestSuite_vf_pmd_stacked_bonded.py | 614 +++++ 7 files changed, 4759 insertions(+) create mode 100644 test_plans/vf_pmd_bonded_8023ad_test_plan.rst create mode 100644 test_plans/vf_pmd_bonded_test_plan.rst create mode 100644 test_plans/vf_pmd_stacked_bonded_test_plan.rst create mode 100644 tests/TestSuite_vf_pmd_bonded.py create mode 100644 tests/TestSuite_vf_pmd_bonded_8023ad.py create mode 100644 tests/TestSuite_vf_pmd_stacked_bonded.py