Add the test case used to compare the results from fdinfo with af_alg's output on the tag. Tests are from min to max sized programs, with and without maps included. # ./test_tag test_tag: OK (40945 tests) Tested on x86_64 and s390x. Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
14 lines
252 B
Makefile
14 lines
252 B
Makefile
CFLAGS += -Wall -O2 -I../../../../usr/include
|
|
|
|
test_objs = test_verifier test_tag test_maps test_lru_map test_lpm_map
|
|
|
|
TEST_PROGS := $(test_objs) test_kmod.sh
|
|
TEST_FILES := $(test_objs)
|
|
|
|
all: $(test_objs)
|
|
|
|
include ../lib.mk
|
|
|
|
clean:
|
|
$(RM) $(test_objs)
|