From patchwork Wed Oct 27 07:42:38 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Xiang An X-Patchwork-Id: 103015 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 2ED79A0547; Wed, 27 Oct 2021 09:42:58 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ED886407FF; Wed, 27 Oct 2021 09:42:57 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 6F61C4003F for ; Wed, 27 Oct 2021 09:42:56 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10149"; a="210182059" X-IronPort-AV: E=Sophos;i="5.87,186,1631602800"; d="scan'208";a="210182059" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Oct 2021 00:42:55 -0700 X-IronPort-AV: E=Sophos;i="5.87,186,1631602800"; d="scan'208";a="497745023" Received: from unknown (HELO dpdk-zhaohy-t.sh.intel.com) ([10.240.183.68]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Oct 2021 00:42:53 -0700 From: Xiang An To: dts@dpdk.org Cc: xiangx.an@intel.com Date: Wed, 27 Oct 2021 15:42:38 +0800 Message-Id: <1635320558-145533-1-git-send-email-xiangx.an@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V1] tests/cvl_switch_filter: gtpu only supports comms 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 Sender: "dts" related gtpu only support comms pkg. Signed-off-by: Xiang An --- tests/TestSuite_cvl_switch_filter.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/TestSuite_cvl_switch_filter.py b/tests/TestSuite_cvl_switch_filter.py index 59d9584..1f32d5d 100755 --- a/tests/TestSuite_cvl_switch_filter.py +++ b/tests/TestSuite_cvl_switch_filter.py @@ -3366,9 +3366,11 @@ class CVLSwitchFilterTest(TestCase): def test_mac_ipv4_nvgre_eth_ipv4_l4_mask_non_pipeline_mode(self): self._rte_flow_validate_pattern(tvs_mac_ipv4_nvgre_eth_ipv4_l4_mask_non_pipeline_mode) + @skip_unsupported_pkg(['os', 'wireless']) def test_mac_ipv4_gtpu_l4_mask_pipeline_mode(self): self._rte_flow_validate_pattern(tvs_mac_ipv4_gtpu_l4_mask_pipeline_mode) + @skip_unsupported_pkg(['os', 'wireless']) def test_mac_ipv6_gtpu_l4_mask_non_pipeline_mode(self): self._rte_flow_validate_pattern(tvs_mac_ipv6_gtpu_l4_mask_non_pipeline_mode)