summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/0004busy_1
blob: e68d1baa6f6c834ed94ab375532ba002ca8ea169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -e

$NFT add table t
$NFT add chain t c1
$NFT add chain t c2
$NFT add rule t c1 jump c2

# kernel should return EBUSY
$NFT delete chain t c2 2>/dev/null || exit 0
echo "E: deleted a busy chain?" >&2
exit 1