diff options
Diffstat (limited to 'scripts/oe-build-perf-test')
-rwxr-xr-x | scripts/oe-build-perf-test | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/scripts/oe-build-perf-test b/scripts/oe-build-perf-test new file mode 100755 index 0000000000..66477ebe0b --- /dev/null +++ b/scripts/oe-build-perf-test | |||
@@ -0,0 +1,51 @@ | |||
1 | #!/usr/bin/python3 | ||
2 | # | ||
3 | # Build performance test script | ||
4 | # | ||
5 | # Copyright (c) 2016, Intel Corporation. | ||
6 | # | ||
7 | # This program is free software; you can redistribute it and/or modify it | ||
8 | # under the terms and conditions of the GNU General Public License, | ||
9 | # version 2, as published by the Free Software Foundation. | ||
10 | # | ||
11 | # This program is distributed in the hope it will be useful, but WITHOUT | ||
12 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
13 | # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
14 | # more details. | ||
15 | # | ||
16 | """Build performance test script""" | ||
17 | import argparse | ||
18 | import logging | ||
19 | import sys | ||
20 | |||
21 | |||
22 | # Set-up logging | ||
23 | LOG_FORMAT = '[%(asctime)s] %(levelname)s: %(message)s' | ||
24 | logging.basicConfig(level=logging.INFO, format=LOG_FORMAT) | ||
25 | log = logging.getLogger() | ||
26 | |||
27 | |||
28 | def parse_args(argv): | ||
29 | """Parse command line arguments""" | ||
30 | parser = argparse.ArgumentParser( | ||
31 | formatter_class=argparse.ArgumentDefaultsHelpFormatter) | ||
32 | |||
33 | parser.add_argument('-D', '--debug', action='store_true', | ||
34 | help='Enable debug level logging') | ||
35 | |||
36 | return parser.parse_args(argv) | ||
37 | |||
38 | |||
39 | def main(argv=None): | ||
40 | """Script entry point""" | ||
41 | args = parse_args(argv) | ||
42 | |||
43 | if args.debug: | ||
44 | log.setLevel(logging.DEBUG) | ||
45 | |||
46 | return 0 | ||
47 | |||
48 | |||
49 | if __name__ == '__main__': | ||
50 | sys.exit(main()) | ||
51 | |||