diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-05-21 23:25:13 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-05-21 23:33:55 +0300 |
commit | e8aa7fe4c7ba3b0015e279c6380c06c85778dd4f (patch) | |
tree | e6b3cd0c37696f4e4d350712efc5ebfc96eee9a9 /library/python/testing/yatest_common/yatest/common | |
parent | aad79a688a3f303c9178c372857f520a7240778d (diff) | |
download | ydb-e8aa7fe4c7ba3b0015e279c6380c06c85778dd4f.tar.gz |
Intermediate changes
Diffstat (limited to 'library/python/testing/yatest_common/yatest/common')
-rw-r--r-- | library/python/testing/yatest_common/yatest/common/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/process.py b/library/python/testing/yatest_common/yatest/common/process.py index 98fd0f0fee..5c474390c2 100644 --- a/library/python/testing/yatest_common/yatest/common/process.py +++ b/library/python/testing/yatest_common/yatest/common/process.py @@ -834,7 +834,7 @@ def _win_kill_process_tree(pid): def _run_readelf(binary_path): return str( subprocess.check_output( - [runtime.binary_path('contrib/python/pyelftools/readelf/readelf'), '-s', runtime.binary_path(binary_path)] + [runtime.binary_path('contrib/python/pyelftools/py3/bin/readelf'), '-s', runtime.binary_path(binary_path)] ) ) |