diff options
author | Simon Horman <horms@verge.net.au> | 2014-04-25 10:20:14 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-04-25 18:49:33 +0900 |
commit | a6f5109f07da9ac6247d0e4c1f8b849bbe4336c3 (patch) | |
tree | 217835c110dec39e812023cb7f9bb581d51833c9 | |
parent | 55ec423e25ce0de813b1e662bbb2fdc49ed7b92f (diff) |
tests/integrated: Enable MPLS set-field and push MPLS tests
Enable disabled MPLS tests, they appear to be supported by Open vSwitch.
I noticed this when using Open vSwitch's "make ryu-check" as
Open vSwitch enforces action consistency for the set NW TTL action.
Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/tests/integrated/test_add_flow_v12_actions.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ryu/tests/integrated/test_add_flow_v12_actions.py b/ryu/tests/integrated/test_add_flow_v12_actions.py index 2c29f459..7c75aa53 100644 --- a/ryu/tests/integrated/test_add_flow_v12_actions.py +++ b/ryu/tests/integrated/test_add_flow_v12_actions.py @@ -486,10 +486,7 @@ class RunTest(tester.TestFlowBase): 'test_action_set_field_ipv6_nd_target', 'test_action_set_field_ipv6_nd_tll', 'test_action_copy_ttl_in', - 'test_action_copy_ttl_out', - 'test_action_push_mpls', - 'test_action_set_field_mpls_label', - 'test_action_set_field_mpls_tc' + 'test_action_copy_ttl_out' ] for u in unsupported: if t.find(u) != -1: |