summaryrefslogtreecommitdiffstats
path: root/tests/files/error.2
diff options
context:
space:
mode:
Diffstat (limited to 'tests/files/error.2')
-rw-r--r--tests/files/error.218
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/files/error.2 b/tests/files/error.2
deleted file mode 100644
index 744a63d5..00000000
--- a/tests/files/error.2
+++ /dev/null
@@ -1,18 +0,0 @@
-#! nft -f
-
-# mixed syntactical and non-syntactical errors in blocks
-table filter {
- # missing identifier
- chain
-
- # missing chain block
- chain output
-
- chain output {
- tcp
- tcp dport
- tcp dport tcp
- tcp dport tcp dport
- tcp dport ssh
- }
-}