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 6C745459D0; Wed, 18 Sep 2024 22:37:54 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E3DBB4026F; Wed, 18 Sep 2024 22:37:53 +0200 (CEST) Received: from mail-qk1-f181.google.com (mail-qk1-f181.google.com [209.85.222.181]) by mails.dpdk.org (Postfix) with ESMTP id F02614003C for ; Wed, 18 Sep 2024 22:37:51 +0200 (CEST) Received: by mail-qk1-f181.google.com with SMTP id af79cd13be357-7a9ac2d50ffso12428985a.1 for ; Wed, 18 Sep 2024 13:37:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1726691871; x=1727296671; 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=7r2B3+oO6y3Zs1uvO+T0LiDtKgdxAa/HeLaZm2po/bA=; b=bA80N2hrDTZ+b5IebfEekmjRPTmLX7gNeT763xyAdZzTNwzAYIshr0xAqezcXG2rjV Q7CU/TLblHz/KWBKFZHETm0aQKPvEvWfrUTAmLIO2zI1rofYrou+mGrmpJtOLUhyPKm7 IAcqoRqnnMHC881asg4l+vJMEai6pLmmn42GU= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1726691871; x=1727296671; 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=7r2B3+oO6y3Zs1uvO+T0LiDtKgdxAa/HeLaZm2po/bA=; b=Gdx1VmekuWdau4gdWyx1ULyrS1hkVN9KwhAgR+s5uUOsEa3NvPgsodcHp8KpbfvRG9 bsAADDIT0Gr8vx/R4eyHkOll4XYoQSzoGEdn1ddpyQQlLuzIdWFcx73w1lnRPxI27zlU 7O2KevGw6RoJYA0J87QfrB/02qktrSS0OHJwzspy+xawhfIqdfDEZVyabGqbRybq+8/Q C9It94mk6/tTqv1UHpP9UmMqKtCmF/RBjyhduCiFR7GGH9KDgHaEGjqU1jZ8BvNh5qUP COhYctmxeRIfa0OLGMUuOc3RJ4LrcakfkmTJsXU1KITvQir7pX9gV2V7tuG7sGBde+yw yZ9w== X-Gm-Message-State: AOJu0Yy+9AfiaoyNAh+D5zedz5FOhHmbTHJ2dk/GDyqGQrZPNqA0L18z eXHbUwBCs5nFsNw1uCLSAb8imyBIpclcY6mX/uOBOzICOnTHnmNAgeA9PC7o6tw= X-Google-Smtp-Source: AGHT+IH3jfs51SlePeoj5bg3E1wmQ0p3rSbzYCd2wZddbPSHda1L7+x5qQyEXpC+GaNcjtWeGxRUjA== X-Received: by 2002:a05:620a:488:b0:7a6:601c:c827 with SMTP id af79cd13be357-7acaf58b500mr128162485a.27.1726691871254; Wed, 18 Sep 2024 13:37:51 -0700 (PDT) Received: from dean-laptop.iol.unh.edu ([2606:4100:3880:1271:f9bd:24da:464d:6294]) by smtp.gmail.com with ESMTPSA id af79cd13be357-7acb0809a66sm8652485a.52.2024.09.18.13.37.50 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 18 Sep 2024 13:37:50 -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 v15 0/1] dts: port over VLAN test suite Date: Wed, 18 Sep 2024 16:38:05 -0400 Message-ID: <20240918203806.2727-1-dmarx@iol.unh.edu> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240911174310.19973-1-dmarx@iol.unh.edu> References: <20240911174310.19973-1-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 v15: * 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