summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorVarsha Rao <rvarsha016@gmail.com>2017-10-11 10:31:49 +0530
committerPablo Neira Ayuso <pablo@netfilter.org>2017-10-17 14:01:48 +0200
commit07d44073c30e98a407653137360762245f270511 (patch)
tree52fdc7abaa0357f9ce84e44fc21a45b56bad73a8 /tests
parentc7a6808f014001d4aa7c1969d320efc00a41f10e (diff)
tests: files: Remove tests for verdict maps.
Remove test cases for verdict maps. As they are already there in tests/shell file. Signed-off-by: Varsha Rao <rvarsha016@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/files/verdict-maps20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/files/verdict-maps b/tests/files/verdict-maps
deleted file mode 100644
index c1630ce3..00000000
--- a/tests/files/verdict-maps
+++ /dev/null
@@ -1,20 +0,0 @@
-#! nft -f
-#
-
-add table ip filter
-add chain ip filter input { type filter hook input priority 0; }
-
-add chain ip filter chain1
-add filter chain1 counter
-
-add chain ip filter chain2
-add filter chain2 counter
-
-add chain ip filter chain3
-add filter chain3 counter
-
-add filter input ip saddr vmap { \
- 10.0.0.0/24 : jump chain1, \
- 10.0.0.0/8 : jump chain2, \
- 8.8.8.8 : jump chain3 \
-}