diff options
| author | Maxime Dénès | 2017-07-19 17:37:48 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2017-07-19 17:37:48 +0200 |
| commit | d074e889b3cdfe8c292d3c52a4ed005789384fc0 (patch) | |
| tree | 1a32b01f4daa0b8473b8f8733fb9775a1fb14c09 /tools/make-one-time-file.py | |
| parent | 9ccba83b916523107d6c692b3147d0d91ec03411 (diff) | |
| parent | 18dd13f3717295ef3c2edce1451b0b9ac99dc5d7 (diff) | |
Merge PR #745: Add timing scripts
Diffstat (limited to 'tools/make-one-time-file.py')
| -rwxr-xr-x | tools/make-one-time-file.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/make-one-time-file.py b/tools/make-one-time-file.py new file mode 100755 index 0000000000..e66136df9d --- /dev/null +++ b/tools/make-one-time-file.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python +import sys +from TimeFileMaker import * + +if __name__ == '__main__': + USAGE = 'Usage: %s FILE_NAME [OUTPUT_FILE_NAME ..]' % sys.argv[0] + HELP_STRING = r'''Formats timing information from the output of `make TIMED=1` into a sorted table. + +The input is expected to contain lines in the format: +FILE_NAME (...user: NUMBER_IN_SECONDS...) +''' + if len(sys.argv) < 2 or '--help' in sys.argv[1:] or '-h' in sys.argv[1:]: + print(USAGE) + if '--help' in sys.argv[1:] or '-h' in sys.argv[1:]: + print(HELP_STRING) + if len(sys.argv) == 2: sys.exit(0) + sys.exit(1) + else: + times_dict = get_times(sys.argv[1]) + table = make_table_string(times_dict) + print_or_write_table(table, sys.argv[2:]) |
