Add some tests to check the cpu attribute of meta expresion. Signed-off-by: Ana Rey <anarey@xxxxxxxxx> --- tests/any/meta.t | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/any/meta.t b/tests/any/meta.t index 7361962..7cdf87a 100644 --- a/tests/any/meta.t +++ b/tests/any/meta.t @@ -164,3 +164,11 @@ meta pkttype != unicast;ok;pkttype != unicast meta pkttype != multicast;ok;pkttype != multicast meta pkttype broadcastttt;fail -meta pkttype { broadcast, multicast} accept;ok + +meta cpu 1;ok;cpu 1 +meta cpu != 1;ok;cpu != 1 +meta cpu 1-3;ok;cpu >= 1 cpu <= 3 +# BUG: there is not matching of packets with this rule. +meta cpu != 1-2;ok;cpu < 1 cpu > 2 +meta cpu { 2,3};ok;cpu { 2, 3} +-meta cpu != { 2,3};ok -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html