mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
Move MACsec offload API and ethtool feature tests from tools/testing/selftests/drivers/net/netdevsim/macsec-offload.sh to tools/testing/selftests/drivers/net/macsec.py using the NetDrvEnv framework so tests can run against both netdevsim (default) and real hardware (NETIF=ethX). As some real hardware requires MACsec to use encryption, add that to the tests. Netdevsim-specific limit checks (max SecY, max RX SC) were moved into separate test cases to avoid failures on real hardware. Signed-off-by: Cosmin Ratiu <cratiu@nvidia.com> Reviewed-by: Sabrina Dubroca <sd@queasysnail.net> Link: https://patch.msgid.link/20260408115240.1636047-2-cratiu@nvidia.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
26 lines
436 B
Makefile
26 lines
436 B
Makefile
# SPDX-License-Identifier: GPL-2.0+ OR MIT
|
|
|
|
TEST_PROGS := \
|
|
devlink.sh \
|
|
devlink_in_netns.sh \
|
|
devlink_trap.sh \
|
|
ethtool-coalesce.sh \
|
|
ethtool-features.sh \
|
|
ethtool-fec.sh \
|
|
ethtool-pause.sh \
|
|
fib.sh \
|
|
fib_notifications.sh \
|
|
hw_stats_l3.sh \
|
|
nexthop.sh \
|
|
peer.sh \
|
|
psample.sh \
|
|
tc-mq-visibility.sh \
|
|
udp_tunnel_nic.sh \
|
|
# end of TEST_PROGS
|
|
|
|
TEST_FILES := \
|
|
ethtool-common.sh
|
|
# end of TEST_FILES
|
|
|
|
include ../../../lib.mk
|