diff options
author | pmikus <peter.mikus@protonmail.ch> | 2023-08-07 08:10:54 +0000 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2023-08-07 09:43:45 +0000 |
commit | 29c4f405985893e7b3ec69823f853a28d7a73baf (patch) | |
tree | 092f355d9a9951979ed566d3254d892dd2d6f7b6 | |
parent | 3909fec961a9d2d8b1784535c909e5cb38bc06e8 (diff) |
fix(core): Disable core dbg analysisoper-rls2306-230710
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ia85c4a48155c1e760120a61b39bacbb9de1ab673
(cherry picked from commit ffca8b8655c772fc6273702cae2151e7ac7a846d)
-rw-r--r-- | resources/libraries/python/CoreDumpUtil.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/resources/libraries/python/CoreDumpUtil.py b/resources/libraries/python/CoreDumpUtil.py index 97948ad28a..09a5e35254 100644 --- a/resources/libraries/python/CoreDumpUtil.py +++ b/resources/libraries/python/CoreDumpUtil.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Cisco and/or its affiliates. +# Copyright (c) 2023 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -140,9 +140,10 @@ class CoreDumpUtil: if node[u"type"] == NodeType.DUT: command = ( f"for f in {Constants.CORE_DUMP_DIR}/*.core; do " - f"sudo gdb /usr/bin/vpp ${{f}} " - f"-ex 'source -v {Constants.REMOTE_FW_DIR}" - f"/resources/tools/scripts/gdb-commands' -ex quit; " + # Causing issues + #f"sudo gdb /usr/bin/vpp ${{f}} " + #f"-ex 'source -v {Constants.REMOTE_FW_DIR}" + #f"/resources/tools/scripts/gdb-commands' -ex quit; " f"sudo rm -f ${{f}}; done" ) try: |