diff options
author | Ole Troan <ot@cisco.com> | 2019-10-22 08:57:31 +0200 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-10-22 08:15:09 +0000 |
commit | bd38f7ff8ce7303eae4e8449c3b62a9dd39ed078 (patch) | |
tree | 5f83940e178ca6ac3ebeb941cc1432cbd22891c4 /src/plugins/cdp/test | |
parent | 534de8b2a77cc2479a3f23cdb6df3d43cead06a6 (diff) |
cdp: disable failing tests for python3
scapy in python3 does not seem to allow creating invalid protocol
packets. Suggest the maintainer rewrite the invalid tests so they
also work for python3. In the mean time they are disabled.
Type: fix
Signed-off-by: Ole Troan <ot@cisco.com>
Change-Id: I554d57528422c98c6df4ba76eeae38c03f512a38
Diffstat (limited to 'src/plugins/cdp/test')
-rw-r--r-- | src/plugins/cdp/test/test_cdp.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/cdp/test/test_cdp.py b/src/plugins/cdp/test/test_cdp.py index 7f77b4bbb01..c0e52876752 100644 --- a/src/plugins/cdp/test/test_cdp.py +++ b/src/plugins/cdp/test/test_cdp.py @@ -13,6 +13,8 @@ from re import compile from time import sleep from util import ppp import platform +import sys +import unittest """ TestCDP is a subclass of VPPTestCase classes. @@ -96,9 +98,13 @@ class TestCDP(VppTestCase): self.assert_equal(system[:length], self.device_id[:length], "CDP received invalid device id") + @unittest.skipIf(sys.version_info[0] > 2, + "not supported in python3/scapy") def test_cdp_underflow_tlv(self): self.send_bad_packet(3, ".") + @unittest.skipIf(sys.version_info[0] > 2, + "not supported in python3/scapy") def test_cdp_overflow_tlv(self): self.send_bad_packet(8, ".") |