summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--library/python/testing/yatest_common/yatest/common/process.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/process.py b/library/python/testing/yatest_common/yatest/common/process.py
index 66a1b9d56b4..2a0f3e8d52a 100644
--- a/library/python/testing/yatest_common/yatest/common/process.py
+++ b/library/python/testing/yatest_common/yatest/common/process.py
@@ -296,6 +296,7 @@ class _Execution(object):
pbt_filename = None
if os.path.exists(runtime.gdb_path()):
+ yatest_logger.debug("Getting full backtrace from core file")
self._backtrace = cores.get_gdb_full_backtrace(self.command[0], core_path, runtime.gdb_path())
bt_filename = path.get_unique_file_path(
runtime.output_path(),
@@ -307,6 +308,7 @@ class _Execution(object):
pbt_filename = bt_filename + ".html"
backtrace_to_html(bt_filename, pbt_filename)
+ yatest_logger.debug("Register coredump")
if store_cores:
runtime._register_core(
os.path.basename(self.command[0]), self.command[0], core_path, bt_filename, pbt_filename