summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/0032priority_variable_0
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2019-08-09 11:16:00 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2019-08-09 12:36:45 +0200
commiteb14363d44cea5f9fe283825a89894575136adf1 (patch)
tree78c27edb597f2b903fc8b8d33566759f087d69f4 /tests/shell/testcases/chains/0032priority_variable_0
parentdba4a9b4b5fe2c4b6929be799fdb9332fc653e1b (diff)
tests: shell: move chain priority and policy to chain folder
Move new chain tests for variable priority and policy to chain folder. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests/shell/testcases/chains/0032priority_variable_0')
-rwxr-xr-xtests/shell/testcases/chains/0032priority_variable_017
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/shell/testcases/chains/0032priority_variable_0 b/tests/shell/testcases/chains/0032priority_variable_0
new file mode 100755
index 00000000..51bc5eb1
--- /dev/null
+++ b/tests/shell/testcases/chains/0032priority_variable_0
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+# Tests use of variables in priority specification
+
+set -e
+
+RULESET="
+define pri = 10
+
+table inet global {
+ chain prerouting {
+ type filter hook prerouting priority \$pri
+ policy accept
+ }
+}"
+
+$NFT -f - <<< "$RULESET"