This patch adds test case for checking jump to non existing chain. Signed-off-by: Varsha Rao <rvarsha016@xxxxxxxxx> --- tests/shell/testcases/chains/0015check_jump_loop_1 | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 tests/shell/testcases/chains/0015check_jump_loop_1 diff --git a/tests/shell/testcases/chains/0015check_jump_loop_1 b/tests/shell/testcases/chains/0015check_jump_loop_1 new file mode 100755 index 0000000..059cfaa --- /dev/null +++ b/tests/shell/testcases/chains/0015check_jump_loop_1 @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e + +$NFT add table t +$NFT add chain t c1 +$NFT add chain t c2 +$NFT add t c1 jump c2 +# kernel should return ENOENT +$NFT add t c2 ip daddr vmap { 1 : jump c3 } +echo "E: Jumped to non existing chain" >&2 -- 2.13.6 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html