fix(core): Disable core dbg analysis 34/39334/2
authorpmikus <peter.mikus@protonmail.ch>
Mon, 7 Aug 2023 08:10:54 +0000 (08:10 +0000)
committerpmikus <peter.mikus@protonmail.ch>
Mon, 7 Aug 2023 08:11:23 +0000 (08:11 +0000)
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ia85c4a48155c1e760120a61b39bacbb9de1ab673

resources/libraries/python/CoreDumpUtil.py

index 97948ad..09a5e35 100644 (file)
@@ -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: