diff mbox series

[nft] tests: py: Actually use all available hooks in bridge/chains.t

Message ID 2b98ba50fa537d10dfb535aff4ad34b00ec53cdd.1590323965.git.sbrivio@redhat.com
State Accepted
Delegated to: Pablo Neira
Headers show
Series [nft] tests: py: Actually use all available hooks in bridge/chains.t | expand

Commit Message

Stefano Brivio May 24, 2020, 1 p.m. UTC
Despite being explicitly mentioned as available, prerouting and
postrouting hooks are not used, filter-pre and filter-post chains
are both built to hook on input.

Fixes: 25851df85e85 ("tests: regression: revisit chain tests")
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
---
 tests/py/bridge/chains.t | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Pablo Neira Ayuso May 25, 2020, 8:04 p.m. UTC | #1
On Sun, May 24, 2020 at 03:00:07PM +0200, Stefano Brivio wrote:
> Despite being explicitly mentioned as available, prerouting and
> postrouting hooks are not used, filter-pre and filter-post chains
> are both built to hook on input.

Applied, thanks.
diff mbox series

Patch

diff --git a/tests/py/bridge/chains.t b/tests/py/bridge/chains.t
index 85dde73e8520..e071d9a3c971 100644
--- a/tests/py/bridge/chains.t
+++ b/tests/py/bridge/chains.t
@@ -1,8 +1,8 @@ 
 # filter chains available are: prerouting, input, output, forward, postrouting
-:filter-pre;type filter hook input priority 0
+:filter-pre;type filter hook prerouting priority 0
 :filter-output;type filter hook output priority 0
 :filter-forward;type filter hook forward priority 0
 :filter-input;type filter hook input priority 0
-:filter-post;type filter hook input priority 0
+:filter-post;type filter hook postrouting priority 0
 
 *bridge;test-bridge;filter-pre,filter-output,filter-forward,filter-input,filter-post