summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/0005busy_map_1
blob: 93eca82796f9e394329037d57d37a2ab0c469ebf (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -e

$NFT add table t
$NFT add chain t c1
$NFT add chain t c2
$NFT add rule t c1 tcp dport vmap { 1 : jump c2 }
# kernel should return EBUSY
$NFT delete chain t c2 2>/dev/null
echo "E: deleted a busy chain?" >&2