Message ID | 20240422152701.13518-1-fw@strlen.de (mailing list archive) |
---|---|
State | Changes Requested |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] tools: testing: selftests: switch conntrack_dump_flush to TEST_PROGS | expand |
On Mon, 22 Apr 2024 17:26:59 +0200 Florian Westphal wrote: > Currently conntrack_dump_flush test program always runs when passing > TEST_PROGS argument: > > % make -C tools/testing/selftests TARGETS=net/netfilter TEST_PROGS=conntrack_ipip_mtu.sh run_tests > make: Entering [..] > TAP version 13 > 1..2 [..] > selftests: net/netfilter: conntrack_dump_flush [..] > > Move away from TEST_CUSTOM_PROGS to avoid this. After this, > above command will only run the program specified in TEST_PROGS. Hm, but why TEST_CUSTOM_PROGS in the first place? What's special about it? I think TEST_GEN_PROGS would work
Jakub Kicinski <kuba@kernel.org> wrote: > On Mon, 22 Apr 2024 17:26:59 +0200 Florian Westphal wrote: > > Currently conntrack_dump_flush test program always runs when passing > > TEST_PROGS argument: > > > > % make -C tools/testing/selftests TARGETS=net/netfilter TEST_PROGS=conntrack_ipip_mtu.sh run_tests > > make: Entering [..] > > TAP version 13 > > 1..2 [..] > > selftests: net/netfilter: conntrack_dump_flush [..] > > > > Move away from TEST_CUSTOM_PROGS to avoid this. After this, > > above command will only run the program specified in TEST_PROGS. > > Hm, but why TEST_CUSTOM_PROGS in the first place? > What's special about it? I think TEST_GEN_PROGS would work It works iff I run 'make -C tools/testing/selftests TARGETS=net/netfilter' before running vng ... make -C tools/testing/selftests TARGETS=net/netfilter TEST_PROGS=conntrack_dump_flush TEST_GEN_PROGS="" run_tests. I'll send a v2, will check if it works in the CI or not.
diff --git a/tools/testing/selftests/net/netfilter/Makefile b/tools/testing/selftests/net/netfilter/Makefile index 68e4780edfdc..15d2f2087aee 100644 --- a/tools/testing/selftests/net/netfilter/Makefile +++ b/tools/testing/selftests/net/netfilter/Makefile @@ -7,6 +7,7 @@ MNL_CFLAGS := $(shell $(HOSTPKG_CONFIG) --cflags libmnl 2>/dev/null) MNL_LDLIBS := $(shell $(HOSTPKG_CONFIG) --libs libmnl 2>/dev/null || echo -lmnl) TEST_PROGS := br_netfilter.sh bridge_brouter.sh +TEST_PROGS += conntrack_dump_flush.sh TEST_PROGS += conntrack_icmp_related.sh TEST_PROGS += conntrack_ipip_mtu.sh TEST_PROGS += conntrack_tcp_unreplied.sh @@ -28,8 +29,6 @@ TEST_PROGS += nft_zones_many.sh TEST_PROGS += rpath.sh TEST_PROGS += xt_string.sh -TEST_CUSTOM_PROGS += conntrack_dump_flush - TEST_GEN_FILES = audit_logread TEST_GEN_FILES += conntrack_dump_flush TEST_GEN_FILES += connect_close nf_queue diff --git a/tools/testing/selftests/net/netfilter/conntrack_dump_flush.sh b/tools/testing/selftests/net/netfilter/conntrack_dump_flush.sh new file mode 100755 index 000000000000..5e81c8284aa9 --- /dev/null +++ b/tools/testing/selftests/net/netfilter/conntrack_dump_flush.sh @@ -0,0 +1,4 @@ +#!/bin/bash +# SPDX-License-Identifier: GPL-2.0 + +exec ./conntrack_dump_flush
Currently conntrack_dump_flush test program always runs when passing TEST_PROGS argument: % make -C tools/testing/selftests TARGETS=net/netfilter TEST_PROGS=conntrack_ipip_mtu.sh run_tests make: Entering [..] TAP version 13 1..2 [..] selftests: net/netfilter: conntrack_dump_flush [..] Move away from TEST_CUSTOM_PROGS to avoid this. After this, above command will only run the program specified in TEST_PROGS. Signed-off-by: Florian Westphal <fw@strlen.de> --- I noticed that conntrack_dump_flush test case runs on each test iteration in the netdev test infra, hence this patch. Alternative would be to also pass TEST_CUSTOM_PROGS="", but I guess its better to stop using this feature, no other net subtests do this. tools/testing/selftests/net/netfilter/Makefile | 3 +-- tools/testing/selftests/net/netfilter/conntrack_dump_flush.sh | 4 ++++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100755 tools/testing/selftests/net/netfilter/conntrack_dump_flush.sh