diff options
author | iaz1607 <iaz1607@yandex-team.ru> | 2022-02-10 16:45:37 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:37 +0300 |
commit | e5437feb4ac2d2dc044e1090b9312dde5ef197e0 (patch) | |
tree | f5a238c69dd20a1fa2092127a31b8aff25020f7d /library/python/testing/yatest_common/yatest/common/process.py | |
parent | f4945d0a44b8770f0801de3056aa41639b0b7bd2 (diff) | |
download | ydb-e5437feb4ac2d2dc044e1090b9312dde5ef197e0.tar.gz |
Restoring authorship annotation for <iaz1607@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/python/testing/yatest_common/yatest/common/process.py')
-rw-r--r-- | library/python/testing/yatest_common/yatest/common/process.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/process.py b/library/python/testing/yatest_common/yatest/common/process.py index a8bcc21f51..58e12d8f69 100644 --- a/library/python/testing/yatest_common/yatest/common/process.py +++ b/library/python/testing/yatest_common/yatest/common/process.py @@ -79,12 +79,12 @@ class InvalidExecutionStateError(Exception): pass -class SignalInterruptionError(Exception): - def __init__(self, message=None): - super(SignalInterruptionError, self).__init__(message) - self.res = None - - +class SignalInterruptionError(Exception): + def __init__(self, message=None): + super(SignalInterruptionError, self).__init__(message) + self.res = None + + class InvalidCommandError(Exception): pass @@ -284,7 +284,7 @@ class _Execution(object): def wait(self, check_exit_code=True, timeout=None, on_timeout=None): def _wait(): finished = None - interrupted = False + interrupted = False try: if hasattr(os, "wait4"): try: @@ -321,12 +321,12 @@ class _Execution(object): yatest_logger.debug("Process resource usage is not available as process finished before wait4 was called") else: raise - except SignalInterruptionError: - interrupted = True - raise + except SignalInterruptionError: + interrupted = True + raise finally: - if not interrupted: - self._process.wait() # this has to be here unconditionally, so that all process properties are set + if not interrupted: + self._process.wait() # this has to be here unconditionally, so that all process properties are set if not finished: finished = time.time() |