mirror of
https://github.com/raspberrypi/linux.git
synced 2026-01-04 01:57:21 +00:00
Add a selftest for netdev generic netlink. For now there is only a single test that exercises the `queue-get` API. The test works with netdevsim by default or with a real device by setting NETIF. Add a timeout param to cmd() since ethtool -L can take a long time on real devices. Signed-off-by: David Wei <dw@davidwei.uk> Link: https://lore.kernel.org/r/20240507163228.2066817-3-dw@davidwei.uk Signed-off-by: Jakub Kicinski <kuba@kernel.org>
12 lines
172 B
Makefile
12 lines
172 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
TEST_INCLUDES := $(wildcard lib/py/*.py)
|
|
|
|
TEST_PROGS := \
|
|
ping.py \
|
|
queues.py \
|
|
stats.py \
|
|
# end of TEST_PROGS
|
|
|
|
include ../../lib.mk
|