summaryrefslogtreecommitdiffstats
path: root/scripts/oe-build-perf-test
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2016-06-23 18:43:33 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-01 16:22:47 +0100
commiteb36f0000205230e78ab326d8ae6a504939af9c8 (patch)
tree8f3a47e766ac3530cb728ce990f34a67d9aa138a /scripts/oe-build-perf-test
parent8c596369ddcd1d079bec5c163132676f3940767b (diff)
downloadpoky-eb36f0000205230e78ab326d8ae6a504939af9c8.tar.gz
oe-build-perf-test: implement --globalres-file option
Using this option the script appends test results into a 'global results file'. A CSV-formatted output of the results. This option is to provide compatibility with the old build-perf-test.sh. (From OE-Core rev: e9f18e63220e452f2b0c878998e57d944ae83980) 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>
Diffstat (limited to 'scripts/oe-build-perf-test')
-rwxr-xr-xscripts/oe-build-perf-test5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/oe-build-perf-test b/scripts/oe-build-perf-test
index ca90f69e1e..9dd073cdfb 100755
--- a/scripts/oe-build-perf-test
+++ b/scripts/oe-build-perf-test
@@ -70,6 +70,8 @@ def parse_args(argv):
70 70
71 parser.add_argument('-D', '--debug', action='store_true', 71 parser.add_argument('-D', '--debug', action='store_true',
72 help='Enable debug level logging') 72 help='Enable debug level logging')
73 parser.add_argument('--globalres-file',
74 help="Append results to 'globalres' csv file")
73 75
74 return parser.parse_args(argv) 76 return parser.parse_args(argv)
75 77
@@ -94,6 +96,9 @@ def main(argv=None):
94 # Run actual tests 96 # Run actual tests
95 runner = BuildPerfTestRunner(out_dir) 97 runner = BuildPerfTestRunner(out_dir)
96 ret = runner.run_tests() 98 ret = runner.run_tests()
99 if not ret:
100 if args.globalres_file:
101 runner.update_globalres_file(args.globalres_file)
97 102
98 return ret 103 return ret
99 104