mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
oe-build-perf-test: enable logging into file
(From OE-Core rev: d5bbcdaf332b2a15382672d6a40b2d2b807b9dde) 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>
This commit is contained in:
committed by
Richard Purdie
parent
5599645d33
commit
8329d56cd4
@@ -52,6 +52,17 @@ def pre_run_sanity_check():
|
|||||||
return True
|
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):
|
def parse_args(argv):
|
||||||
"""Parse command line arguments"""
|
"""Parse command line arguments"""
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
@@ -76,8 +87,11 @@ def main(argv=None):
|
|||||||
# Check our capability to drop caches and ask pass if needed
|
# Check our capability to drop caches and ask pass if needed
|
||||||
KernelDropCaches.check()
|
KernelDropCaches.check()
|
||||||
|
|
||||||
# Run actual tests
|
# Set-up log file
|
||||||
out_dir = 'results-{}'.format(datetime.now().strftime('%Y%m%d%H%M%S'))
|
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)
|
runner = BuildPerfTestRunner(out_dir)
|
||||||
ret = runner.run_tests()
|
ret = runner.run_tests()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user