diff options
Diffstat (limited to 'tests/shell/testcases/rule_management/0006replace_1')
-rwxr-xr-x | tests/shell/testcases/rule_management/0006replace_1 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/shell/testcases/rule_management/0006replace_1 b/tests/shell/testcases/rule_management/0006replace_1 new file mode 100755 index 0000000..b728310 --- /dev/null +++ b/tests/shell/testcases/rule_management/0006replace_1 @@ -0,0 +1,13 @@ +#!/bin/bash + +# tests for Netfilter bug #965 and the related fix +# (regarding rule management with a given position/handle spec) + +set -e +$NFT add table t +$NFT add chain t c + +# position keyword with replace action is not allowed, this should fail +$NFT replace rule t c position 2 drop 2>/dev/null || exit 0 +echo "E: allowed replace with position specification" >&2 +exit 1 |