summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/maps/0017_map_variable_0
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2023-09-18 12:28:23 +0200
committerFlorian Westphal <fw@strlen.de>2023-09-18 13:08:52 +0200
commitb512f79edbf476fe6b551cb6c7d007d81dd9f154 (patch)
treee6a6922d35d0e85b967ff82659baff014d0f253d /tests/shell/testcases/maps/0017_map_variable_0
parentdc913f03d6cf8b1cb8b7a1364351792152a2faca (diff)
tests/shell: skip catchall tests if kernel lacks support
Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Thomas Haller <thaller@redhat.com>
Diffstat (limited to 'tests/shell/testcases/maps/0017_map_variable_0')
-rwxr-xr-xtests/shell/testcases/maps/0017_map_variable_013
1 files changed, 12 insertions, 1 deletions
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