diff options
author | xinfeng zhao <xinfengx.zhao@intel.com> | 2021-09-03 15:49:05 +0800 |
---|---|---|
committer | xinfeng zhao <xinfengx.zhao@intel.com> | 2021-10-08 07:04:10 +0000 |
commit | 648fa787d8ed7a045da18cf1a0761f3ca0d5b947 (patch) | |
tree | adc5e134ac7d141adba2f6463082657e4f9432e3 /resources/libraries/python/Trace.py | |
parent | 6f9f70d7bb1bbed37ff1495c20d11a03b82b9951 (diff) |
Add flow test suites
The comms DDP package needs to be installed to support all flow protocols
Signed-off-by: xinfeng zhao <xinfengx.zhao@intel.com>
Change-Id: I6ab1bd8beb9edb8c9889a0ed9a999080ca3cef3d
Diffstat (limited to 'resources/libraries/python/Trace.py')
-rw-r--r-- | resources/libraries/python/Trace.py | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/resources/libraries/python/Trace.py b/resources/libraries/python/Trace.py index f54ae1060e..f82ab95f2e 100644 --- a/resources/libraries/python/Trace.py +++ b/resources/libraries/python/Trace.py @@ -37,12 +37,21 @@ class Trace: @staticmethod def clear_packet_trace_on_all_duts(nodes): - """Clear VPP packet trace. + """Clear VPP packet trace on all duts. :param nodes: Nodes where the packet trace will be cleared. :type nodes: dict """ for node in nodes.values(): if node[u"type"] == NodeType.DUT: - PapiSocketExecutor.run_cli_cmd_on_all_sockets( - node, u"clear trace") + Trace.clear_packet_trace_on_dut(node) + + @staticmethod + def clear_packet_trace_on_dut(node): + """Clear VPP packet trace on dut. + + :param node: Node where the packet trace will be cleared. + :type node: dict + """ + PapiSocketExecutor.run_cli_cmd_on_all_sockets( + node, u"clear trace") |