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 8802745550; Tue, 2 Jul 2024 21:25:43 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5FC0A40665; Tue, 2 Jul 2024 21:25:43 +0200 (CEST) Received: from mail-vk1-f172.google.com (mail-vk1-f172.google.com [209.85.221.172]) by mails.dpdk.org (Postfix) with ESMTP id 69C8C402D8 for ; Tue, 2 Jul 2024 21:25:41 +0200 (CEST) Received: by mail-vk1-f172.google.com with SMTP id 71dfb90a1353d-4ef789d1994so86105e0c.1 for ; Tue, 02 Jul 2024 12:25:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1719948340; x=1720553140; darn=dpdk.org; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=xSOqEiiJnKDWiisXlH8MuTw+nwHuDglNriQXRofDlqM=; b=cBulbTIHR7xYLqIgOCqSJFQpMQrG6QZHUAQmF/TkyUgy+bjA8SxCqKZJEUujw7O6j7 fm8Eu6nh32aPQFvzA7UwjVfSgZX8x8nJriQv+AUQF9k+oc+gEeXCFH6zdjoEFAemBYJV KjXpJJoMDwleOPJ041O9FNn+9FMgF6aj9l16A= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1719948341; x=1720553141; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=xSOqEiiJnKDWiisXlH8MuTw+nwHuDglNriQXRofDlqM=; b=RJtwbpSO2g/EH+AXl4tEWA3H1S3sq/RfUdVWDuDsIG+mvRLwWhawNrObkXycdbSp0v RHF7R3d9PPF/pX2LkXg+fP0wdorqcx4EYM3ny7uKoRlWPiP3JQu7H+C827DgdkxGOOQs evIRPT84YeRHsajrgv14lOzu7kdtAlBTZ/KJB4GDZgih7fTYicW2M9ylTFRwlp7BxQ6h r4rxucFocSDrbctnuHlgU1OSnBzzcTRDbm/PGKGqxUmcDE00hNVfE8Xm8fJfYeY6MM1K 9SR1RcOvsrE+1QFRuAl/aD9sZe40g0TKk/BuzUv0zOGLiU2Am2BisaAsTO/aZV6tkg2L rJ9g== X-Gm-Message-State: AOJu0YzAcOgpi8JPMg5AjA/cJDBPxz8/D5+3a3ZKfgZtgWSPkHNjzg5H Yvwz/Loe6hJQH19/q8eRcWTmInUEZXdqzyB1qV8abA39O7dkc49UPFws7/XvznU= X-Google-Smtp-Source: AGHT+IF2dXHkswoI7+K8KiLnQ1y01PCdCXwwTvJP0K5bltC8ERwH+yq4xe+YWEbKuSuOuYguuWE/xg== X-Received: by 2002:a05:6102:dcf:b0:48c:54e7:c203 with SMTP id ada2fe7eead31-48faf1246bamr9131029137.2.1719948340719; Tue, 02 Jul 2024 12:25:40 -0700 (PDT) Received: from localhost.unh.edu ([2606:4100:3880:1271:e2f8:4ec3:8bf3:864c]) by smtp.gmail.com with ESMTPSA id af79cd13be357-79d6927a828sm486905185a.38.2024.07.02.12.25.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 02 Jul 2024 12:25:40 -0700 (PDT) From: Nicholas Pratte To: Honnappa.Nagarahalli@arm.com, probb@iol.unh.edu, jspewock@iol.unh.edu, juraj.linkes@pantheon.tech, paul.szczepanek@arm.com, luca.vizzarro@arm.com, yoan.picchi@foss.arm.com, dmarx@iol.unh.edu Cc: dev@dpdk.org, Nicholas Pratte Subject: [PATCH v2 0/3] Mac Filter Port to New DTS Date: Tue, 2 Jul 2024 15:24:20 -0400 Message-ID: <20240702192422.2480-2-npratte@iol.unh.edu> X-Mailer: git-send-email 2.44.0 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 This series incorporates the test suite itself, in addition to framwork changes needed to complete the suite's stipulated test cases. The test suite consists of three test cases: one testing basically mac filtering functionality, the other testing the PMD's mac address pool behavior within a TestPMD shell, and the third testing filtering functionality of multicast mac addresses. The port from old DTS has removed some potentially important details regarding EAL and TestPMD parameters, and these can be found within the test suites corresponding commit messages. Moreover, unlike old DTS, instead of validating packet behavior using TestPMD, this test suite validates behavior by sending, and analysing,a list of received packets. Nicholas Pratte (3): dts: add boolean to adjust addresses dts: add methods for setting mac and multicast addresses dts: mac filter test suite refactored for new dts dts/framework/config/conf_yaml_schema.json | 3 +- dts/framework/remote_session/testpmd_shell.py | 177 ++++++++++++++ dts/framework/test_suite.py | 7 +- dts/tests/TestSuite_mac_filter.py | 220 ++++++++++++++++++ 4 files changed, 405 insertions(+), 2 deletions(-) create mode 100644 dts/tests/TestSuite_mac_filter.py -- 2.44.0