mirror of
https://git.yoctoproject.org/poky
synced 2026-03-01 12:59:39 +01:00
Re-implement "test1_p2" from build-perf-test.sh which measures 'bitbake virtual/kernel'. (From OE-Core rev: 5ff82c6e2b0ff41a9bfdd49c99e84a982cf6e467) 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>
46 lines
1.6 KiB
Python
46 lines
1.6 KiB
Python
# Copyright (c) 2016, Intel Corporation.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
# under the terms and conditions of the GNU General Public License,
|
|
# version 2, as published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
# more details.
|
|
#
|
|
"""Basic set of build performance tests"""
|
|
from . import BuildPerfTest, perf_test_case
|
|
|
|
|
|
@perf_test_case
|
|
class Test1P1(BuildPerfTest):
|
|
name = "test1"
|
|
build_target = 'core-image-sato'
|
|
description = "Measure wall clock of bitbake {} and size of tmp dir".format(build_target)
|
|
|
|
def _run(self):
|
|
self.log_cmd_output("bitbake {} -c fetchall".format(self.build_target))
|
|
self.rm_tmp()
|
|
self.rm_sstate()
|
|
self.rm_cache()
|
|
self.sync()
|
|
self.measure_cmd_resources(['bitbake', self.build_target], 'build',
|
|
'bitbake ' + self.build_target)
|
|
self.measure_disk_usage(self.bb_vars['TMPDIR'], 'tmpdir', 'tmpdir')
|
|
self.save_buildstats()
|
|
|
|
|
|
@perf_test_case
|
|
class Test1P2(BuildPerfTest):
|
|
name = "test12"
|
|
build_target = 'virtual/kernel'
|
|
description = "Measure bitbake {}".format(build_target)
|
|
|
|
def _run(self):
|
|
self.log_cmd_output("bitbake {} -c cleansstate".format(
|
|
self.build_target))
|
|
self.sync()
|
|
self.measure_cmd_resources(['bitbake', self.build_target], 'build',
|
|
'bitbake ' + self.build_target)
|