1# SPDX-License-Identifier: GPL-2.0 2CFLAGS += $(KHDR_INCLUDES) 3 4TEST_INCLUDES := $(wildcard lib/py/*.py) \ 5 $(wildcard lib/sh/*.sh) \ 6 ../../net/lib.sh \ 7 8TEST_GEN_FILES := \ 9 napi_id_helper \ 10# end of TEST_GEN_FILES 11 12TEST_PROGS := \ 13 hds.py \ 14 napi_id.py \ 15 napi_threaded.py \ 16 netcons_basic.sh \ 17 netcons_cmdline.sh \ 18 netcons_fragmented_msg.sh \ 19 netcons_overflow.sh \ 20 netcons_sysdata.sh \ 21 netcons_torture.sh \ 22 netpoll_basic.py \ 23 ping.py \ 24 psp.py \ 25 queues.py \ 26 ring_reconfig.py \ 27 shaper.py \ 28 stats.py \ 29 xdp.py \ 30# end of TEST_PROGS 31 32# YNL files, must be before "include ..lib.mk" 33YNL_GEN_FILES := psp_responder 34TEST_GEN_FILES += $(YNL_GEN_FILES) 35 36include ../../lib.mk 37 38# YNL build 39YNL_GENS := psp 40 41include ../../net/ynl.mk 42