From b512f79edbf476fe6b551cb6c7d007d81dd9f154 Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Mon, 18 Sep 2023 12:28:23 +0200 Subject: tests/shell: skip catchall tests if kernel lacks support Signed-off-by: Florian Westphal Signed-off-by: Thomas Haller --- tests/shell/testcases/maps/0017_map_variable_0 | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'tests/shell/testcases/maps/0017_map_variable_0') diff --git a/tests/shell/testcases/maps/0017_map_variable_0 b/tests/shell/testcases/maps/0017_map_variable_0 index 70cea88d..e01adb4c 100755 --- a/tests/shell/testcases/maps/0017_map_variable_0 +++ b/tests/shell/testcases/maps/0017_map_variable_0 @@ -2,9 +2,15 @@ set -e +if [ "$NFT_TEST_HAVE_catchall_element" != n ] ; then + CATCHALL="* : 3," +else + CATCHALL="," +fi + RULESET="define x = { 1.1.1.1 : 2, - * : 3, + $CATCHALL } table ip x { @@ -19,3 +25,8 @@ table ip x { }" $NFT -f - <<< "$RULESET" + +if [ "$NFT_TEST_HAVE_catchall_element" = n ] ; then + echo "Ran modified version of test due to NFT_TEST_HAVE_catchall_element=n (skipped)" + exit 77 +fi -- cgit v1.2.3