testutils: remove incompatible wildcard check for OF 1.3
This needs to be replaced with code that uses the table features reply to
determine the fields that cannot be matched.
diff --git a/src/python/oftest/testutils.py b/src/python/oftest/testutils.py
index a5d626d..5867274 100644
--- a/src/python/oftest/testutils.py
+++ b/src/python/oftest/testutils.py
@@ -551,7 +551,11 @@
def packet_to_flow_match(parent, packet):
match = oftest.parse.packet_to_flow_match(packet)
- match.wildcards |= required_wildcards(parent)
+ if ofp.OFP_VERSION in [1, 2]:
+ match.wildcards |= required_wildcards(parent)
+ else:
+ # TODO remove incompatible OXM entries
+ pass
return match
def flow_msg_create(parent, pkt, ing_port=None, action_list=None, wildcards=None,