diff options
author | alexandr21 <alexandr21@yandex-team.ru> | 2022-02-10 16:51:06 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:51:06 +0300 |
commit | 2557eeeb3570dcc53587fa50477693326b7a9ace (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/python/testing/yatest_common/yatest/common | |
parent | a1adfe01d5b618c4bf11de5f69898b1836e4d90b (diff) | |
download | ydb-2557eeeb3570dcc53587fa50477693326b7a9ace.tar.gz |
Restoring authorship annotation for <alexandr21@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/python/testing/yatest_common/yatest/common')
-rw-r--r-- | library/python/testing/yatest_common/yatest/common/process.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/process.py b/library/python/testing/yatest_common/yatest/common/process.py index e079b57bcb..a8bcc21f51 100644 --- a/library/python/testing/yatest_common/yatest/common/process.py +++ b/library/python/testing/yatest_common/yatest/common/process.py @@ -368,8 +368,8 @@ class _Execution(object): raise ExecutionError(self) # Don't search for sanitize errors if stderr was redirected - self.verify_sanitize_errors() - + self.verify_sanitize_errors() + def verify_no_coredumps(self): """ Verify there is no coredump from this binary. If there is then report backtrace. @@ -383,7 +383,7 @@ class _Execution(object): else: yatest_logger.warning("Core dump file recovering is skipped: module cores isn't available") - def verify_sanitize_errors(self): + def verify_sanitize_errors(self): """ Verify there are no sanitizer (ASAN, MSAN, TSAN, etc) errors for this binary. If there are any report them. """ |