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 44CA145AE7; Tue, 8 Oct 2024 21:18:13 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C64E640261; Tue, 8 Oct 2024 21:18:12 +0200 (CEST) Received: from mail-oo1-f54.google.com (mail-oo1-f54.google.com [209.85.161.54]) by mails.dpdk.org (Postfix) with ESMTP id 0C67E4025D for ; Tue, 8 Oct 2024 21:18:11 +0200 (CEST) Received: by mail-oo1-f54.google.com with SMTP id 006d021491bc7-5e804f043b6so261790eaf.2 for ; Tue, 08 Oct 2024 12:18:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1728415090; x=1729019890; 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=GMRPgiJhyyibytV9Qit6hMa984ObQ89y6yBadS/mXiI=; b=elxQneKp/9V7+GVhPTbNsolIocu4N2YnXbKcW7XU/DzTDn5A7BzLUlXNuMm5TwSi0g ffq10k8FTUre6a2ipyv0CBL9lTBiJJJOqA99TthSRgJHSmWC2NfJccjThFhfg6gxMQvY B4olRT6VwbE/chJJu84kQQM+7qhrQhq9P9PKg= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1728415090; x=1729019890; 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=GMRPgiJhyyibytV9Qit6hMa984ObQ89y6yBadS/mXiI=; b=aTt7Jv6thwM0bXzVuOXnvvQ3b3oWM83hBedzxSXywHl9LTB+wZdi3gUtwAenOxoYUA ioz3GW5mNm6X+I4FcLmYzHhzla4fXjJVGwk9M0aI2DQxKigIdonFCQ0TE5GP8xVeABS0 0m9cJrfYkgBo21pYXzGVVmPqHCA2RFwHg48yZgu9CDCha/zwVbCYY1oS8rbrSoy4CHAc ca24qNIgPxGPeA+AIdUAtt5i+eGkLLS2uzM2vq8iFCoodP9Cm6b0ePk3T29QP8mnO+AR 3udLTboBZxm6m6Ps7nrl9dNcle4MkT8zF7VWArk51UXYqeIwNRXv2VKS3mFZQi+yMSu+ 568Q== X-Gm-Message-State: AOJu0Yw9qkk+zY9IlmJ/CuLufm27lhBPsYkwiaplte5e3GpzFkkCCDNu V5RJKHqnnc2/xcR89/daNM5s8nMDqrukAHPM8AXePuUOb9rka3Gc9zZ3UXJE0fI= X-Google-Smtp-Source: AGHT+IGI1E9CnUurJCvx9D7zU7d4NScdvmUF2D8gCgNfshOP9K61w3PvZQ80xRVETchEIFU/qeEyNA== X-Received: by 2002:a05:6358:5241:b0:1aa:c73d:5a8a with SMTP id e5c5f4694b2df-1c2b80d35a9mr572476755d.16.1728415089797; Tue, 08 Oct 2024 12:18:09 -0700 (PDT) Received: from dean-laptop.iol.unh.edu ([2606:4100:3880:1271:f9bd:24da:464d:6294]) by smtp.gmail.com with ESMTPSA id 6a1803df08f44-6cbc70b103asm4075946d6.103.2024.10.08.12.18.08 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 08 Oct 2024 12:18:09 -0700 (PDT) From: Dean Marx To: probb@iol.unh.edu, npratte@iol.unh.edu, luca.vizzarro@arm.com, yoan.picchi@foss.arm.com, Honnappa.Nagarahalli@arm.com, paul.szczepanek@arm.com Cc: dev@dpdk.org, Dean Marx Subject: [PATCH v17 0/1] port over VLAN test suite Date: Tue, 8 Oct 2024 15:18:34 -0400 Message-ID: <20241008191835.20210-1-dmarx@iol.unh.edu> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20241008172007.8634-2-dmarx@iol.unh.edu> References: <20241008172007.8634-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 v17: * Fixed git issues in vlan method patch dependency 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