mirror of
https://github.com/raspberrypi/linux.git
synced 2026-01-05 02:37:41 +00:00
Adds a selftest that creates two virtual interfaces, assigns one to a new namespace, and assigns IP addresses to both. It listens on the destination interface using socat and configures a dynamic target on netconsole, pointing to the destination IP address. The test then checks if the message was received properly on the destination interface. Signed-off-by: Breno Leitao <leitao@debian.org> Acked-by: Matthieu Baerts (NGI0) <matttbe@kernel.org> Link: https://patch.msgid.link/20240822095652.3806208-1-leitao@debian.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
15 lines
245 B
Makefile
15 lines
245 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
TEST_INCLUDES := $(wildcard lib/py/*.py) \
|
|
../../net/net_helper.sh \
|
|
../../net/lib.sh \
|
|
|
|
TEST_PROGS := \
|
|
netcons_basic.sh \
|
|
ping.py \
|
|
queues.py \
|
|
stats.py \
|
|
# end of TEST_PROGS
|
|
|
|
include ../../lib.mk
|