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 8B1E04568A; Wed, 24 Jul 2024 18:30:14 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7B0F340B97; Wed, 24 Jul 2024 18:30:14 +0200 (CEST) Received: from mail-qk1-f169.google.com (mail-qk1-f169.google.com [209.85.222.169]) by mails.dpdk.org (Postfix) with ESMTP id 0E6BB4026F for ; Wed, 24 Jul 2024 18:30:13 +0200 (CEST) Received: by mail-qk1-f169.google.com with SMTP id af79cd13be357-79f1b569ab7so323711185a.3 for ; Wed, 24 Jul 2024 09:30:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1721838612; x=1722443412; 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=/SDf0S7hL9W7CqvN/JnkV5uGBqtsqAzValwjQLD9Mgo=; b=ThhXfQQexo9RKPTlo+1fjpFdraZudijcLWbZTscKUXw/WGFJLSBx4hELjccuR8+WCM hceW+gl6aD0wp8hVGz86wdwaRT3KgLncCT1goX6DAdGZq0o4QBxIe7iuwwix1o0u1A2S NJGji1tUOJV/GrUuVoMqyfivJhmsvKlwBJuMs= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1721838612; x=1722443412; 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=/SDf0S7hL9W7CqvN/JnkV5uGBqtsqAzValwjQLD9Mgo=; b=U58ZkU6sYAq7RAJeVENaizCuI9rDCVqBL5UZlqGqV4031cGYQAhXzQa4vTqvFyuFxG 03KAipwZl4KG0mhXhOYA77+jCLyAHp7vtumprwJ8oinJknpeV6hs4BWL62A/jAZJIFF1 +ZC7KCbxmbixv208UJSKruBacZ453A5Dnu/Dn/6II9P3i6MEqqqLX4tciDwg6QsGbfo2 GrbHBIN5yFX7rf+kR7cVQU7Te8tejLtlKkizO7xKhbo2Pl4Fdg2yS9kyC/hu1Z5hgvri GmN4dqcnaczKDC/aGBl4g7l8W3t9nF00IOUjDbC+ilf4UBrjAdcfAK36uOvMXsdFVKn+ +c0A== X-Gm-Message-State: AOJu0YzVoZ7No61tYoxz3tnsvkBvE6CsktoFq1lI+n8tdANJGSVprELZ S4/eeh/E/nC5wMWbJHgOrExUwEJL/ShT3StMLsErPsUIT+1XvaeYVNm1m8xnpn8= X-Google-Smtp-Source: AGHT+IHLB1dDCbOd8Y5W7NfVrg/Mf9y1ADhxFCr/pGSPhPiKZVT7KW1tH4JZ6tiPPhTVZD/U2H4+0Q== X-Received: by 2002:a05:620a:3910:b0:79f:190a:8ad7 with SMTP id af79cd13be357-7a1d44d7f66mr28241885a.33.1721838612200; Wed, 24 Jul 2024 09:30:12 -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-7a198fbda21sm588970985a.36.2024.07.24.09.30.11 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 24 Jul 2024 09:30:11 -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 v12 0/3] dts: refactored VLAN test suite Date: Wed, 24 Jul 2024 12:30:01 -0400 Message-ID: <20240724163004.5681-1-dmarx@iol.unh.edu> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240611161606.23881-2-dmarx@iol.unh.edu> References: <20240611161606.23881-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 Refactored suite to be compatible with context manager, fixed bug in show port info regex for VLAN offload flags. Minor formatting fixes are included as well. Dean Marx (3): dts: add VLAN methods to testpmd shell dts: VLAN test suite implementation dts: config schema dts/framework/config/conf_yaml_schema.json | 3 +- dts/framework/remote_session/testpmd_shell.py | 245 +++++++++++++++++- dts/tests/TestSuite_vlan.py | 168 ++++++++++++ 3 files changed, 414 insertions(+), 2 deletions(-) create mode 100644 dts/tests/TestSuite_vlan.py -- 2.44.0