diff options
author | selias <samelias@cisco.com> | 2017-02-21 11:51:01 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2017-02-27 12:11:24 +0000 |
commit | 93f31102f8404b52b58a98e46c9c1c8eea7e2e67 (patch) | |
tree | 8d0b7cdb3af799d645574958adb1d66952b4426b /resources/libraries | |
parent | 019ffc9c301d45fc7b3348e5f6a274fb48a9bf87 (diff) |
HC Test: update plugin-ACL tests
- improve packet trace logging after each test
- suppress IPv6RA on VPP because it interfered with ipv6 test cases
- do not use fictional destination MAC address, doesn't work in VIRL
- ignore errors when logging configuration - should not fail the test
Change-Id: I16a3321670d4c2fa8f6434dc4badd243b7e4f9fc
Signed-off-by: selias <samelias@cisco.com>
Diffstat (limited to 'resources/libraries')
-rw-r--r-- | resources/libraries/python/Classify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/python/Classify.py b/resources/libraries/python/Classify.py index d0a5804bf8..e4fa2a3087 100644 --- a/resources/libraries/python/Classify.py +++ b/resources/libraries/python/Classify.py @@ -375,7 +375,7 @@ class Classify(object): try: VatExecutor.cmd_from_template( node, "acl_plugin/acl_dump.vat") - except ValueError: + except (ValueError, RuntimeError): # Fails to parse JSON data in response, but it is still logged pass |