From 6bfae6634aa26c2e88dddf49d91245d880b0222b Mon Sep 17 00:00:00 2001 From: selias Date: Mon, 24 Oct 2016 18:15:52 +0200 Subject: CSIT-457: Address Honeycomb test failures - tag all not-implemented features with EXPECTED_FAILING - add workarounds for known issues with VAT dump commands - replace hardcoded test data with parametrized - separate IP neighbor and IP address into two test cases - support unordered lists with compare_data_structures keyword Change-Id: I2c683162325cee720ba496489787fa50e9c72b8c Signed-off-by: selias --- resources/libraries/python/InterfaceUtil.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'resources/libraries/python/InterfaceUtil.py') diff --git a/resources/libraries/python/InterfaceUtil.py b/resources/libraries/python/InterfaceUtil.py index 11600a1d47..b3d168c217 100644 --- a/resources/libraries/python/InterfaceUtil.py +++ b/resources/libraries/python/InterfaceUtil.py @@ -262,6 +262,8 @@ class InterfaceUtil(object): for item in data: item["netmask"] = convert_ipv4_netmask_prefix( item["prefix_length"]) + # VAT returns addresses with reversed byte order (VPP-132) + item["ip"] = ".".join(item["ip"].split(".")[::-1]) return data @staticmethod -- cgit 1.2.3-korg