From 4e718641397c876315a87db441afc53139863122 Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Fri, 4 Mar 2022 11:30:55 +0100 Subject: evaluate: init cmd pointer for new on-stack context else, this will segfault when trying to print the "table 'x' doesn't exist" error message. Signed-off-by: Florian Westphal --- tests/shell/testcases/chains/0041chain_binding_0 | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/shell/testcases') diff --git a/tests/shell/testcases/chains/0041chain_binding_0 b/tests/shell/testcases/chains/0041chain_binding_0 index 59bdbe9f..4b541bb5 100755 --- a/tests/shell/testcases/chains/0041chain_binding_0 +++ b/tests/shell/testcases/chains/0041chain_binding_0 @@ -1,5 +1,11 @@ #!/bin/bash +# no table x, caused segfault in earlier nft releases +$NFT insert rule inet x y handle 107 'goto { log prefix "MOO! "; }' +if [ $? -ne 1 ]; then + exit 1 +fi + set -e EXPECTED="table inet x { -- cgit v1.2.3