aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/oe-build-perf-test
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2016-05-11 16:16:37 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-01 16:08:51 +0100
commitd5bbcdaf332b2a15382672d6a40b2d2b807b9dde (patch)
tree9bd2aa67f38a1157f9268c28acf59e0b3ec04d8c /scripts/oe-build-perf-test
parentea32a8a65f668450e0ec0e80483bd5e8c91b8a18 (diff)
downloadopenembedded-core-contrib-d5bbcdaf332b2a15382672d6a40b2d2b807b9dde.tar.gz
oe-build-perf-test: enable logging into file
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/oe-build-perf-test')
-rwxr-xr-xscripts/oe-build-perf-test16
1 files changed, 15 insertions, 1 deletions
diff --git a/scripts/oe-build-perf-test b/scripts/oe-build-perf-test
index 0a9fc9e7d4..ca90f69e1e 100755
--- a/scripts/oe-build-perf-test
+++ b/scripts/oe-build-perf-test
@@ -52,6 +52,17 @@ def pre_run_sanity_check():
return True
+def setup_file_logging(log_file):
+ """Setup loggin to file"""
+ log_dir = os.path.dirname(log_file)
+ if not os.path.exists(log_dir):
+ os.makedirs(log_dir)
+ formatter = logging.Formatter(LOG_FORMAT)
+ handler = logging.FileHandler(log_file)
+ handler.setFormatter(formatter)
+ log.addHandler(handler)
+
+
def parse_args(argv):
"""Parse command line arguments"""
parser = argparse.ArgumentParser(
@@ -76,8 +87,11 @@ def main(argv=None):
# Check our capability to drop caches and ask pass if needed
KernelDropCaches.check()
- # Run actual tests
+ # Set-up log file
out_dir = 'results-{}'.format(datetime.now().strftime('%Y%m%d%H%M%S'))
+ setup_file_logging(os.path.join(out_dir, 'output.log'))
+
+ # Run actual tests
runner = BuildPerfTestRunner(out_dir)
ret = runner.run_tests()