diff options
author | Neale Ranns <nranns@cisco.com> | 2018-12-11 08:40:20 -0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-12-12 12:05:49 +0000 |
commit | cf3ecb1a42c9c40f386ed59964117c3dab15fa5c (patch) | |
tree | 1de7366c7d4682b226f1955d5b074f3d6ce3f224 /test | |
parent | 11312ef90b334c43966c057591c5a54750d911d2 (diff) |
VOM: vxlan-tunnel takes egress interface for multicast
Change-Id: I23b44d883fbd7919bf55b96b180f97837fd6dae9
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/ext/vom_test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ext/vom_test.cpp b/test/ext/vom_test.cpp index f17d749f3f3..fa51c38215d 100644 --- a/test/ext/vom_test.cpp +++ b/test/ext/vom_test.cpp @@ -1156,7 +1156,8 @@ BOOST_AUTO_TEST_CASE(test_vxlan) { vxlan_tunnel vxt(ep.src, ep.dst, ep.vni); HW::item<handle_t> hw_vxt(3, rc_t::OK); - ADD_EXPECT(vxlan_tunnel_cmds::create_cmd(hw_vxt, "don't-care", ep)); + ADD_EXPECT(vxlan_tunnel_cmds::create_cmd(hw_vxt, "don't-care", ep, + handle_t::INVALID)); TRY_CHECK_RC(OM::write(franz, vxt)); |