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 gro \ 10 napi_id_helper \ 11# end of TEST_GEN_FILES 12 13TEST_PROGS := \ 14 gro.py \ 15 hds.py \ 16 napi_id.py \ 17 napi_threaded.py \ 18 netcons_basic.sh \ 19 netcons_cmdline.sh \ 20 netcons_fragmented_msg.sh \ 21 netcons_overflow.sh \ 22 netcons_sysdata.sh \ 23 netcons_torture.sh \ 24 netpoll_basic.py \ 25 ping.py \ 26 psp.py \ 27 queues.py \ 28 ring_reconfig.py \ 29 shaper.py \ 30 stats.py \ 31 xdp.py \ 32# end of TEST_PROGS 33 34# YNL files, must be before "include ..lib.mk" 35YNL_GEN_FILES := psp_responder 36TEST_GEN_FILES += $(YNL_GEN_FILES) 37 38include ../../lib.mk 39 40# YNL build 41YNL_GENS := psp 42 43include ../../net/ynl.mk 44