From 9a32c83f7529ca7b3f6d4b3253b537a9da5681af Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Fri, 3 Aug 2012 19:56:37 +0200 Subject: tests: fix test, commands now comes before the family and table name Most tests still don't work though. They still need another fix. Reported-by: Tomasz Bursztyka Signed-off-by: Pablo Neira Ayuso --- tests/expr-concat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100755 => 100644 tests/expr-concat (limited to 'tests/expr-concat') diff --git a/tests/expr-concat b/tests/expr-concat old mode 100755 new mode 100644 index d9c553b6..bb284cce --- a/tests/expr-concat +++ b/tests/expr-concat @@ -1,19 +1,19 @@ #! nft -f # Concat element mismatch -rule add ip filter output ip daddr . tcp sport . tcp dport { \ +add rule ip filter output ip daddr . tcp sport . tcp dport { \ 192.168.0.1 . 22, \ 192.168.0.1 . 80, \ } # Concat type mismatch -rule add ip filter output ip daddr . tcp dport { \ +add rule ip filter output ip daddr . tcp dport { \ 192.168.0.1 . 192.168.0.2, \ 192.168.0.1 . 192.168.0.3, \ } # Concat expression -rule add ip filter output ip daddr . tcp dport { \ +add rule ip filter output ip daddr . tcp dport { \ 192.168.0.1 . 22, \ 192.168.0.1 . 80, \ } -- cgit v1.2.3