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 C2F9F45AE3; Tue, 8 Oct 2024 19:19:43 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B29094025C; Tue, 8 Oct 2024 19:19:43 +0200 (CEST) Received: from mail-qv1-f53.google.com (mail-qv1-f53.google.com [209.85.219.53]) by mails.dpdk.org (Postfix) with ESMTP id 7B2324021E for ; Tue, 8 Oct 2024 19:19:42 +0200 (CEST) Received: by mail-qv1-f53.google.com with SMTP id 6a1803df08f44-6cb2cba60e1so34476056d6.3 for ; Tue, 08 Oct 2024 10:19:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1728407982; x=1729012782; darn=dpdk.org; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=wb3vmkvoAsIu30iJFYvfyteH86tHNVuMqHbu8cEMRSM=; b=QL3+x1dL6gEb7VGZUUxcRIyhFHl7CJwIaQxD7YfyjLdgoEiPsbl+KxdTPpee3nWdAu fcaaOx8NlMRd4BWsX/13a/YwdLMzEUD5/8o5RxQYXYBo0uopxB7O+cPYhQi9p96RFhnJ coU62s4XORL17nOWMpbIszqN3PUyh69UtK64g= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1728407982; x=1729012782; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=wb3vmkvoAsIu30iJFYvfyteH86tHNVuMqHbu8cEMRSM=; b=bd4VqNvbQeji5B+rmJOBSGJgoj6BtrND+ddPMs5EGxCueTBu8JPZIdsUY8ug2QOlV/ 8jG9VRTLpwXIcqJrYLM/bIkCYNPjvLeYaof/1rg7v9xAVRN4F4Vn/xI5k+xjmE1raPKI STBVVmhO/927/mFwsNDHGXliat/Zce8O8AJb+6u+KDbqlESO3aifynvpy6yaXssfuF/z uFtPBSZ3ug/tbIERXg2sqCdB63D169F4koEo0nvEsuSqY0DlknvstiikpDM82D4DUk2+ 9BtANq5X3ZkdEwQ1khZCWhP6hDTNj536fXo+BiI2MGH3jtF/ZqeBeseAvLuoPx+4KeHd G2pw== X-Gm-Message-State: AOJu0YwjhNxvFNJxjDOhQBRlZM/rM+NdPcSvOjMwx2RIqBLG4r/WBU+b F0nDRGk/DMBuzQVDYmMtrNRYfBnImKqtSLE48yYlEX/Ynyvz6cF4jYbTwdvLL7w= X-Google-Smtp-Source: AGHT+IGIIPhUnX0raJYikZUkLgvYWj4ijl8zcCjQJn78XBp0uR10TaDlzBs1HtwcjsSWcsBSA2YqJg== X-Received: by 2002:a05:6214:1fda:b0:6cb:c7f3:768e with SMTP id 6a1803df08f44-6cbc7f3788bmr6521636d6.8.1728407981852; Tue, 08 Oct 2024 10:19:41 -0700 (PDT) Received: from dean-laptop.iol.unh.edu ([2606:4100:3880:1210::208]) by smtp.gmail.com with ESMTPSA id 6a1803df08f44-6cbc7fb0aafsm1250826d6.82.2024.10.08.10.19.40 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 08 Oct 2024 10:19:41 -0700 (PDT) From: Dean Marx To: probb@iol.unh.edu, npratte@iol.unh.edu, jspewock@iol.unh.edu, luca.vizzarro@arm.com, yoan.picchi@foss.arm.com, Honnappa.Nagarahalli@arm.com, paul.szczepanek@arm.com, juraj.linkes@pantheon.tech Cc: dev@dpdk.org, Dean Marx Subject: [PATCH v16 0/1] dts: port over VLAN test suite Date: Tue, 8 Oct 2024 13:20:06 -0400 Message-ID: <20241008172007.8634-1-dmarx@iol.unh.edu> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240918204905.7616-2-dmarx@iol.unh.edu> References: <20240918204905.7616-2-dmarx@iol.unh.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Port over VLAN capabilities test suite from old DTS. This test suite verifies that VLAN filtering, stripping, and header insertion all function as expected. When a VLAN ID is in the filter list, all packets with that ID should be forwarded and all others should be dropped. While stripping is enabled, packets sent with a VLAN ID should have the ID removed and then be forwarded. Additionally, when header insertion is enabled packets without a VLAN ID should have a specified ID inserted and then be forwarded. ----------- v13: * Combined conf schema and test suite patches v14: * Reworded docstrings in suite * Added flag checking to shell methods * Fixed tx_vlan_reset method bug v16: * Rebased off next-dts Dean Marx (1): dts: VLAN test suite implementation dts/framework/config/conf_yaml_schema.json | 3 +- dts/tests/TestSuite_vlan.py | 167 +++++++++++++++++++++ 2 files changed, 169 insertions(+), 1 deletion(-) create mode 100644 dts/tests/TestSuite_vlan.py -- 2.44.0