mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 19:43:40 +02:00
Simple PSP test to getting info about PSP devices. Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Daniel Zahka <daniel.zahka@gmail.com> Link: https://patch.msgid.link/20250927225420.1443468-3-kuba@kernel.org Reviewed-by: Willem de Bruijn <willemb@google.com> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
31 lines
528 B
Makefile
31 lines
528 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
CFLAGS += $(KHDR_INCLUDES)
|
|
|
|
TEST_INCLUDES := $(wildcard lib/py/*.py) \
|
|
$(wildcard lib/sh/*.sh) \
|
|
../../net/lib.sh \
|
|
|
|
TEST_GEN_FILES := \
|
|
napi_id_helper \
|
|
# end of TEST_GEN_FILES
|
|
|
|
TEST_PROGS := \
|
|
napi_id.py \
|
|
napi_threaded.py \
|
|
netcons_basic.sh \
|
|
netcons_cmdline.sh \
|
|
netcons_fragmented_msg.sh \
|
|
netcons_overflow.sh \
|
|
netcons_sysdata.sh \
|
|
netpoll_basic.py \
|
|
ping.py \
|
|
psp.py \
|
|
queues.py \
|
|
stats.py \
|
|
shaper.py \
|
|
hds.py \
|
|
xdp.py \
|
|
# end of TEST_PROGS
|
|
|
|
include ../../lib.mk
|