diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2018-05-23 12:08:02 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2018-05-23 12:11:44 +0200 |
commit | 4b6fb07de07ad21c7e8e0c78f3f6387a933f3224 (patch) | |
tree | 40da7d7b8bd9cdd01962518a4b4bcbfd2d7f3811 /tests | |
parent | fc9566ff0adaceafae5687a3e719aa9a436915d5 (diff) |
tests: shell: more chain dependency validation
More exercising for the chain dependency validation.
Reported-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/shell/testcases/chains/0017masquerade_jump_1 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/shell/testcases/chains/0017masquerade_jump_1 b/tests/shell/testcases/chains/0017masquerade_jump_1 new file mode 100755 index 00000000..a57675f5 --- /dev/null +++ b/tests/shell/testcases/chains/0017masquerade_jump_1 @@ -0,0 +1,10 @@ +#!/bin/bash + +set -e + +$NFT add table t +$NFT add chain t input {type filter hook input priority 4 \; } +$NFT add chain t c1 +$NFT add rule t input jump c1 +# kernel should return EOPNOTSUPP +$NFT add rule t c1 masquerade 2>/dev/null >&2 |