]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
tests: files: Remove tests for verdict maps.
authorVarsha Rao <rvarsha016@gmail.com>
Wed, 11 Oct 2017 05:01:49 +0000 (10:31 +0530)
committerPablo Neira Ayuso <pablo@netfilter.org>
Tue, 17 Oct 2017 12:01:48 +0000 (14:01 +0200)
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>
tests/files/verdict-maps [deleted file]

diff --git a/tests/files/verdict-maps b/tests/files/verdict-maps
deleted file mode 100644 (file)
index c1630ce..0000000
+++ /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 \
-}