From: Pablo Neira Ayuso Date: Wed, 24 Apr 2024 18:43:58 +0000 (+0200) Subject: tests: shell: combine dormant flag with netdevice removal X-Git-Tag: v1.1.0~41 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f09171e077f8a9642593e3807e5ca22828befb08;p=thirdparty%2Fnftables.git tests: shell: combine dormant flag with netdevice removal Exercise table is dormant and netdevice is gone combination. Signed-off-by: Pablo Neira Ayuso --- diff --git a/tests/shell/testcases/chains/netdev_chain_dormant_autoremove b/tests/shell/testcases/chains/netdev_chain_dormant_autoremove new file mode 100755 index 00000000..0a684e56 --- /dev/null +++ b/tests/shell/testcases/chains/netdev_chain_dormant_autoremove @@ -0,0 +1,9 @@ +#!/bin/bash + +set -e + +ip link add dummy0 type dummy +ip link add dummy1 type dummy +$NFT add table netdev test { flags dormant\; } +$NFT add chain netdev test ingress { type filter hook ingress devices = { "dummy0", "dummy1" } priority 0\; policy drop\; } +ip link del dummy0