diff options
author | Phil Sutter <phil@nwl.cc> | 2019-10-23 13:27:25 +0200 |
---|---|---|
committer | Phil Sutter <phil@nwl.cc> | 2019-10-23 14:17:14 +0200 |
commit | 57d9995e283488eab99de3ea984c38ff6935a939 (patch) | |
tree | 6085ab6713ea613b83b93d4379e3e8d7a1ddf605 /tests | |
parent | 46763359adc3be45f7202dc0a130718203bfafce (diff) |
Revert "main: Fix for misleading error with negative chain priority"
This reverts commit 9fc71bc6b602c8706d1214e0100bcd7638c257e3.
Given that this change breaks typical commands like
'nft list ruleset -a' while on the other hand escaping of semicolons and
(depending on shell) curly braces is still required, decision was made
to not go with this solution.
Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/shell/testcases/chains/0039negative_priority_0 | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/shell/testcases/chains/0039negative_priority_0 b/tests/shell/testcases/chains/0039negative_priority_0 deleted file mode 100755 index ba17b8cc..00000000 --- a/tests/shell/testcases/chains/0039negative_priority_0 +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -# Test parsing of negative priority values - -set -e - -$NFT add table t -$NFT add chain t c { type filter hook input priority -30\; } |