From 00fe1de4bc054786d29d1cfbf623e2843dec8e4c Mon Sep 17 00:00:00 2001 From: Miroslav Miklus Date: Tue, 16 Feb 2016 18:09:46 +0100 Subject: VppCounters: DBG CLI: show commands show commands usefull for further debugging of FAILED tests Change-Id: I225a2e251e2ee7a1037255dd39a833d7ca1c94ed Signed-off-by: Miroslav Miklus --- resources/libraries/python/VppCounters.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'resources/libraries') diff --git a/resources/libraries/python/VppCounters.py b/resources/libraries/python/VppCounters.py index f34d7a76d1..b99d65274b 100644 --- a/resources/libraries/python/VppCounters.py +++ b/resources/libraries/python/VppCounters.py @@ -35,6 +35,36 @@ class VppCounters(object): if node['type'] == NodeType.DUT: self.vpp_clear_interface_counters(node) + @staticmethod + def vpp_show_errors_verbose(node): + """Run "show errors verbose" debug CLI command + + :param node: Node to run command on + :type node: dict + """ + vat = VatExecutor() + vat.execute_script("show_errors_verbose.vat", node, json_out=False) + + @staticmethod + def vpp_show_runtime_verbose(node): + """Run "show runtime" debug CLI command + + :param node: Node to run command on + :type node: dict + """ + vat = VatExecutor() + vat.execute_script("show_runtime_verbose.vat", node, json_out=False) + + @staticmethod + def vpp_show_hardware_detail(node): + """Run "show hardware-interfaces detail" debug CLI command + + :param node: Node to run command on + :type node: dict + """ + vat = VatExecutor() + vat.execute_script("show_hardware_detail.vat", node, json_out=False) + @staticmethod def vpp_clear_interface_counters(node): """Clear interface counters on VPP node. -- cgit 1.2.3-korg