From b38ce5ce9c9699945bc78797694b13c8c21eb245 Mon Sep 17 00:00:00 2001 From: Jozsef Kadlecsik Date: Wed, 29 Jul 2026 17:29:06 +0200 Subject: [PATCH] tests: restore using sendip when available Signed-off-by: Jozsef Kadlecsik --- tests/runtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtest.sh b/tests/runtest.sh index 2381754..1b00b7b 100755 --- a/tests/runtest.sh +++ b/tests/runtest.sh @@ -52,7 +52,7 @@ export LC_ALL export IPSET_TMP="$tmpdir" HAVE_SENDIP=n -[ -z "`which sendip`" ] && HAVE_SENDIP=y +[ -n "`which sendip`" ] && HAVE_SENDIP=y if [ $HAVE_SENDIP = "n" ]; then if python -c 'from scapy.all import ( IPv6 )'; then HAVE_SENDIP=y -- 2.47.3