From patchwork Thu Jan 5 11:07:45 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jiale, SongX" X-Patchwork-Id: 121596 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 CEC76A00C2; Thu, 5 Jan 2023 04:10:06 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A48FE4067C; Thu, 5 Jan 2023 04:10:06 +0100 (CET) Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 4901440041 for ; Thu, 5 Jan 2023 04:10:04 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1672888203; x=1704424203; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=HNu53xhPpCwLpfJ1Eu/hm9TTc3kolaniNFEg7/xu6eA=; b=d6nD89Mf884wkU9Z2k7PAX9EcXW1fRh1LkX88P3UK7S8iqamYG9cgQhz BCq9t2iBX/0XmyF0NIkbKNJS8XY4ZpgFdRVipQZ2mHkcWhzqXM7IUd4qe c6CTwXRL9fyUwDvnsRDpH7TxmtntlaO2R7g/ljCHkUnwCFQ2BDyQ7BawY GxN9bbQRjlk+D07XMM/l6on6QcGqOsrzWDDJ4HHf5ffKk2nr89Vy3qL0Y +91VWf+vHs1P4IkDQWlHnx4Ec426freCyYxaLuPOIirlRuf/Wt9j/0NuT yOkNJlY5nSO+cZflDG3vL3MGMWy3ZvLxfgBXA5MrHqT5guQfcRpayrbsv g==; X-IronPort-AV: E=McAfee;i="6500,9779,10580"; a="384398296" X-IronPort-AV: E=Sophos;i="5.96,301,1665471600"; d="scan'208";a="384398296" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Jan 2023 19:10:02 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10580"; a="685949698" X-IronPort-AV: E=Sophos;i="5.96,301,1665471600"; d="scan'208";a="685949698" Received: from unknown (HELO localhost.localdomain) ([10.239.252.20]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Jan 2023 19:10:01 -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 11:07:45 +0000 Message-Id: <20230105110752.235201-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