diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2018-11-23 03:20:21 -0800 |
---|---|---|
committer | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2018-11-24 19:59:30 -0800 |
commit | 4a144b49f6b7ee51c2eb9d9e99f200b3be0d6347 (patch) | |
tree | e6e096208f03081b6b2f46cffb89a971607d216f /test/lisp.py | |
parent | 96e8cd0e1d6c21e5f47470c146958a9845ee29a6 (diff) |
VPP-1505 VPP-1508 Remove dep.: py_lispnetworking
test_lisp.py No longer needs the external dependency to run.
py27 runtests: commands[6] | stestr --test-path ./test run --slowest test_lisp
==============================================================================
Basic LISP test
==============================================================================
{0} test.test_lisp.TestLisp.test_lisp_basic_encap [0.487960s] ... ok
======
Totals
======
Ran: 1 tests in 18.0000 sec.
- Passed: 1
- Skipped: 0
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 0.4880 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:00.487960
Test id Runtime (s)
--------------------------------------------- -----------
test.test_lisp.TestLisp.test_lisp_basic_encap 0.488
______________________________________________________ summary ______________________________________________________
py27: commands succeeded
congratulations :)
vagrant@vpp:/vpp$
Change-Id: I35b35f8ddaed79066b3ed62fa0460c9ea83273c2
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/lisp.py')
-rw-r--r-- | test/lisp.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/test/lisp.py b/test/lisp.py index 865070dff9d..a1f0c1675a0 100644 --- a/test/lisp.py +++ b/test/lisp.py @@ -1,10 +1,4 @@ -from random import randint -from socket import AF_INET, AF_INET6 -from scapy.all import * -from scapy.packet import * from scapy.fields import * -from lisp import * -from framework import * from vpp_object import * @@ -292,7 +286,8 @@ class VppLispAdjacency(VppObject): reid_len=self._reid.prefix_length, vni=self._vni) self._test.registry.register(self, self.test.logger) - def eid_equal(self, eid, eid_type, eid_data, prefix_len): + @staticmethod + def eid_equal(eid, eid_type, eid_data, prefix_len): if eid.eid_type != eid_type: return False |