summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/netns
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2017-03-22 01:26:36 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2017-03-22 12:50:35 +0100
commit535a7324626f45bded749dcee7e225f9e0fa28d0 (patch)
tree70d924712d12190cc7617974f993dfd36b98ecf4 /tests/shell/testcases/netns
parent3b4851bfcf2b2d160b759b191232125cb4a4b3ff (diff)
sets: Fix for missing space after last element
Not having a space between the last element in a set and the closing curly brace looks ugly, so add it here. This also adjusts all shell testcases as they match whitespace in nft output and therefore fail otherwise. Signed-off-by: Phil Sutter <phil@nwl.cc> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests/shell/testcases/netns')
-rwxr-xr-xtests/shell/testcases/netns/0001nft-f_012
-rwxr-xr-xtests/shell/testcases/netns/0002loosecommands_04
-rwxr-xr-xtests/shell/testcases/netns/0003many_012
3 files changed, 14 insertions, 14 deletions
diff --git a/tests/shell/testcases/netns/0001nft-f_0 b/tests/shell/testcases/netns/0001nft-f_0
index 663167d7..43527523 100755
--- a/tests/shell/testcases/netns/0001nft-f_0
+++ b/tests/shell/testcases/netns/0001nft-f_0
@@ -19,12 +19,12 @@ trap "rm -rf $tmpfile" EXIT # cleanup if aborted
RULESET="table ip t {
set s {
type ipv4_addr
- elements = { 1.1.0.0}
+ elements = { 1.1.0.0 }
}
chain c {
ct state new
- udp dport { 12345}
+ udp dport { 12345 }
ip saddr @s drop
jump other
}
@@ -35,12 +35,12 @@ RULESET="table ip t {
table ip6 t {
set s {
type ipv6_addr
- elements = { fe00::1}
+ elements = { fe00::1 }
}
chain c {
ct state new
- udp dport { 12345}
+ udp dport { 12345 }
ip6 saddr @s drop
jump other
}
@@ -51,12 +51,12 @@ table ip6 t {
table inet t {
set s {
type ipv6_addr
- elements = { fe00::1}
+ elements = { fe00::1 }
}
chain c {
ct state new
- udp dport { 12345}
+ udp dport { 12345 }
ip6 saddr @s drop
jump other
}
diff --git a/tests/shell/testcases/netns/0002loosecommands_0 b/tests/shell/testcases/netns/0002loosecommands_0
index fbaa3865..3910446a 100755
--- a/tests/shell/testcases/netns/0002loosecommands_0
+++ b/tests/shell/testcases/netns/0002loosecommands_0
@@ -39,12 +39,12 @@ netns_exec $NETNS_NAME "$NFT add rule ip t c jump other"
RULESET="table ip t {
set s {
type ipv4_addr
- elements = { 1.1.0.0}
+ elements = { 1.1.0.0 }
}
chain c {
ct state new
- udp dport { 12345}
+ udp dport { 12345 }
ip saddr @s drop
jump other
}
diff --git a/tests/shell/testcases/netns/0003many_0 b/tests/shell/testcases/netns/0003many_0
index 17d7b935..03da6eec 100755
--- a/tests/shell/testcases/netns/0003many_0
+++ b/tests/shell/testcases/netns/0003many_0
@@ -22,12 +22,12 @@ trap "rm -rf $tmpfile" EXIT # cleanup if aborted
RULESET="table ip t {
set s {
type ipv4_addr
- elements = { 1.1.0.0}
+ elements = { 1.1.0.0 }
}
chain c {
ct state new
- udp dport { 12345}
+ udp dport { 12345 }
ip saddr @s drop
jump other
}
@@ -38,12 +38,12 @@ RULESET="table ip t {
table ip6 t {
set s {
type ipv6_addr
- elements = { fe00::1}
+ elements = { fe00::1 }
}
chain c {
ct state new
- udp dport { 12345}
+ udp dport { 12345 }
ip6 saddr @s drop
jump other
}
@@ -54,12 +54,12 @@ table ip6 t {
table inet t {
set s {
type ipv6_addr
- elements = { fe00::1}
+ elements = { fe00::1 }
}
chain c {
ct state new
- udp dport { 12345}
+ udp dport { 12345 }
ip6 saddr @s drop
jump other
}