diff options
author | Michal Cmarada <mcmarada@cisco.com> | 2019-03-28 08:38:32 +0100 |
---|---|---|
committer | Michal Cmarada <mcmarada@cisco.com> | 2019-03-28 08:39:33 +0100 |
commit | 67f247b4015b76641c6fab7c49e7d9862043c856 (patch) | |
tree | 78fda2b03c27af0eb2e3a357df34fe1fcc5cbf91 /resources/test_data/honeycomb/persistence.py | |
parent | 2dc5924d35671c01e9aaa4ea6b9ae18bdd184ca8 (diff) |
Fix Tap failing tests
Due to migration to Tap-v2 the old Tap API was removed.
This fixes failing tests where Tap interface was used.
Change-Id: I2f90177d2d8ee914e3ddcd3e10f212f9d72b9ac2
Signed-off-by: Michal Cmarada <mcmarada@cisco.com>
Diffstat (limited to 'resources/test_data/honeycomb/persistence.py')
-rw-r--r-- | resources/test_data/honeycomb/persistence.py | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/resources/test_data/honeycomb/persistence.py b/resources/test_data/honeycomb/persistence.py index 88d2137bae..f4ebdd5f23 100644 --- a/resources/test_data/honeycomb/persistence.py +++ b/resources/test_data/honeycomb/persistence.py @@ -44,10 +44,24 @@ def get_variables(interface): }, # tap interface settings 'tap_interface': 'tap_test', - 'tap_settings': {'tap-name': 'tap_test', + 'tap_interface_vat': 'tap0', + 'tap_settings': {'host-interface-name': 'tap_test', 'mac': '08:00:27:c0:5d:37', - 'device-instance': 1 + 'id': 1 }, + 'tap_settings_oper': {'host-interface-name': 'tap_test', + 'device-name': 'tap0', + 'tx-ring-size': 256, + 'rx-ring-size': 256, + 'mac': '08:00:27:c0:5d:37', + 'id': 1 + }, + 'tap_settings_vat': {'dev_name': 'tap0', + 'tx_ring_sz': 256, + 'rx_ring_sz': 256, + 'mac': '08:00:27:c0:5d:37', + 'id': 1 + }, # vhost-user interface settings 'vhost_interface': 'test_vhost', 'vhost_user_client': {'socket': 'soc1', |