diff options
author | Mikhail Borisov <borisov.mikhail@gmail.com> | 2022-02-10 16:45:40 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:40 +0300 |
commit | 5d50718e66d9c037dc587a0211110b7d25a66185 (patch) | |
tree | e98df59de24d2ef7c77baed9f41e4875a2fef972 /build/scripts/find_time_trace.py | |
parent | a6a92afe03e02795227d2641b49819b687f088f8 (diff) | |
download | ydb-5d50718e66d9c037dc587a0211110b7d25a66185.tar.gz |
Restoring authorship annotation for Mikhail Borisov <borisov.mikhail@gmail.com>. Commit 2 of 2.
Diffstat (limited to 'build/scripts/find_time_trace.py')
-rw-r--r-- | build/scripts/find_time_trace.py | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/build/scripts/find_time_trace.py b/build/scripts/find_time_trace.py index 3eb0854403..954d203caa 100644 --- a/build/scripts/find_time_trace.py +++ b/build/scripts/find_time_trace.py @@ -1,17 +1,17 @@ -import os -import sys - -# /scripts/find_time_trace.py <object_file> <destination> -# clang generates `-ftime-trace` output file path based on main output file path - - -def main(): - assert len(sys.argv) == 3 - obj_path = sys.argv[1] - trace_path = sys.argv[2] - orig_trace_path = obj_path.rpartition('.o')[0] + '.json' - os.rename(orig_trace_path, trace_path) - - -if __name__ == '__main__': - main() +import os +import sys + +# /scripts/find_time_trace.py <object_file> <destination> +# clang generates `-ftime-trace` output file path based on main output file path + + +def main(): + assert len(sys.argv) == 3 + obj_path = sys.argv[1] + trace_path = sys.argv[2] + orig_trace_path = obj_path.rpartition('.o')[0] + '.json' + os.rename(orig_trace_path, trace_path) + + +if __name__ == '__main__': + main() |