* [PATCH net-next] tools: testing: selftests: switch conntrack_dump_flush to TEST_PROGS
@ 2024-04-22 15:26 Florian Westphal
2024-04-24 2:16 ` Jakub Kicinski
0 siblings, 1 reply; 3+ messages in thread
From: Florian Westphal @ 2024-04-22 15:26 UTC (permalink / raw)
To: netdev
Cc: Paolo Abeni, David S. Miller, Eric Dumazet, Jakub Kicinski,
netfilter-devel, pablo
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
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
--
2.43.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] tools: testing: selftests: switch conntrack_dump_flush to TEST_PROGS
2024-04-22 15:26 [PATCH net-next] tools: testing: selftests: switch conntrack_dump_flush to TEST_PROGS Florian Westphal
@ 2024-04-24 2:16 ` Jakub Kicinski
2024-04-24 9:55 ` Florian Westphal
0 siblings, 1 reply; 3+ messages in thread
From: Jakub Kicinski @ 2024-04-24 2:16 UTC (permalink / raw)
To: Florian Westphal
Cc: netdev, Paolo Abeni, David S. Miller, Eric Dumazet,
netfilter-devel, pablo
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
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] tools: testing: selftests: switch conntrack_dump_flush to TEST_PROGS
2024-04-24 2:16 ` Jakub Kicinski
@ 2024-04-24 9:55 ` Florian Westphal
0 siblings, 0 replies; 3+ messages in thread
From: Florian Westphal @ 2024-04-24 9:55 UTC (permalink / raw)
To: Jakub Kicinski
Cc: Florian Westphal, netdev, Paolo Abeni, David S. Miller,
Eric Dumazet, netfilter-devel, pablo
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.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-04-24 9:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-22 15:26 [PATCH net-next] tools: testing: selftests: switch conntrack_dump_flush to TEST_PROGS Florian Westphal
2024-04-24 2:16 ` Jakub Kicinski
2024-04-24 9:55 ` Florian Westphal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).