From: Varsha Rao Date: Wed, 11 Oct 2017 04:47:51 +0000 (+0530) Subject: tests: files: Remove tests for set. X-Git-Tag: v0.8.1~56 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=36004ce7dce9b2910fbf12c6b2659ae585560277;p=thirdparty%2Fnftables.git tests: files: Remove tests for set. This patch removes test case for set. As new test case is added to tests/shell file. Signed-off-by: Varsha Rao Signed-off-by: Pablo Neira Ayuso --- diff --git a/tests/files/set b/tests/files/set deleted file mode 100644 index 3c040b0a..00000000 --- a/tests/files/set +++ /dev/null @@ -1,14 +0,0 @@ -#! nft -f - -add table filter -add chain filter output { type filter hook output priority 0 ; } - -# set: IP addresses -add rule filter output ip daddr { \ - 192.168.0.1, \ - 192.168.0.2, \ - 192.168.0.3, \ -} - -# set: tcp ports -add rule filter output tcp dport { 22, 23 } counter