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 shaper.py \ 27 stats.py \ 28 xdp.py \ 29# end of TEST_PROGS 30 31# YNL files, must be before "include ..lib.mk" 32YNL_GEN_FILES := psp_responder 33TEST_GEN_FILES += $(YNL_GEN_FILES) 34 35include ../../lib.mk 36 37# YNL build 38YNL_GENS := psp 39 40include ../../net/ynl.mk 41