diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2016-04-25 15:21:27 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-01 16:22:46 +0100 |
commit | 14108a88abed082f840f076b92bc9c10d47bca1c (patch) | |
tree | 206abf432070ec22f9d1fefb88b901f4cf792f29 | |
parent | ec8be2039e70617008a22601ee796f593312ba0c (diff) | |
download | poky-14108a88abed082f840f076b92bc9c10d47bca1c.tar.gz |
scripts: introduce oe-build-perf-test
Initial wireframe for re-writing build-perf-test.sh in Python.
(From OE-Core rev: 764eb2d011305b84501cc183531a2a5353b0b5ab)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 | |||