diff options
author | Florian Westphal <fw@strlen.de> | 2016-08-22 00:27:48 +0200 |
---|---|---|
committer | Florian Westphal <fw@strlen.de> | 2016-08-22 18:36:43 +0200 |
commit | 09d27ff9138e4be38b86499e26ad2d1116dd0f02 (patch) | |
tree | 266b2daf46b1c3d757528ee99e66a8fbad748cb1 /tests/py/any | |
parent | 0b4bdb894f1225f1045fd9d12f6d975f27e6c368 (diff) |
ct: display bit number instead of raw value
... and add test cases for ct label.
Currently this dumped 'label 0x2', now 'label 1' would be shown.
This makes add/list behave the same.
Signed-off-by: Florian Westphal <fw@strlen.de>
Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests/py/any')
-rw-r--r-- | tests/py/any/ct.t | 4 | ||||
-rw-r--r-- | tests/py/any/ct.t.payload | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/tests/py/any/ct.t b/tests/py/any/ct.t index 4d13213d..7fd4f2cb 100644 --- a/tests/py/any/ct.t +++ b/tests/py/any/ct.t @@ -92,3 +92,7 @@ ct saddr 1.2.3.4;fail ct original mark 42;fail # swapped key and direction ct mark original;fail + +ct label 127;ok +ct label set 127;ok +ct label 128;fail diff --git a/tests/py/any/ct.t.payload b/tests/py/any/ct.t.payload index e64ce2ff..97f292ea 100644 --- a/tests/py/any/ct.t.payload +++ b/tests/py/any/ct.t.payload @@ -332,3 +332,14 @@ ip test-ip4 output [ bitwise reg 1 = (reg=1 & 0x00000020 ) ^ 0x00000000 ] [ cmp neq reg 1 0x00000000 ] +# ct label 127 +ip test-ip4 output + [ ct load label => reg 1 ] + [ bitwise reg 1 = (reg=1 & 0x00000000 0x00000000 0x00000000 0x80000000 ) ^ 0x00000000 0x00000000 0x00000000 0x00000000 ] + [ cmp neq reg 1 0x00000000 0x00000000 0x00000000 0x00000000 ] + +# ct label set 127 +ip test-ip4 output + [ immediate reg 1 0x00000000 0x00000000 0x00000000 0x80000000 ] + [ ct set label with reg 1 ] + |