1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-01 13:09:50 +00:00

oeqa/buildperf: don't archive stdout/stderr of commands

Stop capturing output of the shell commands into <test>/commands.log.
Redirecting output into a file prevented the unittest framework from
capturing it, causing useless errors (with empty output) like:
oeqa.utils.CommandError: Command '['bitbake', 'core-image-sato']'
returned non-zero exit status 1 with output:

In general, the console output of commands is only interesting when
something fails. Also, dropping the commands.log file is a huge saving
in disk space, and thus, repository size when results are archived in
Git.

(From OE-Core rev: e004664287ec03e7367a7bf553d9a3038444e82e)

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:
Markus Lehtonen
2017-01-27 16:54:53 +02:00
committed by Richard Purdie
parent 8279d6f257
commit fcd28fd50f
2 changed files with 14 additions and 25 deletions
+5 -5
View File
@@ -38,8 +38,8 @@ class Test1P2(BuildPerfTestCase):
def test12(self):
"""Build virtual/kernel"""
# Build and cleans state in order to get all dependencies pre-built
self.log_cmd_output(['bitbake', self.build_target])
self.log_cmd_output(['bitbake', self.build_target, '-c', 'cleansstate'])
self.run_cmd(['bitbake', self.build_target])
self.run_cmd(['bitbake', self.build_target, '-c', 'cleansstate'])
self.sync()
self.measure_cmd_resources(['bitbake', self.build_target], 'build',
@@ -74,7 +74,7 @@ class Test2(BuildPerfTestCase):
def test2(self):
"""Run core-image-sato do_rootfs with sstate"""
# Build once in order to populate sstate cache
self.log_cmd_output(['bitbake', self.build_target])
self.run_cmd(['bitbake', self.build_target])
self.rm_tmp()
self.rm_cache()
@@ -106,8 +106,8 @@ class Test4(BuildPerfTestCase):
def test4(self):
"""eSDK metrics"""
self.log_cmd_output("bitbake {} -c do_populate_sdk_ext".format(
self.build_target))
self.run_cmd(['bitbake', '-c', 'do_populate_sdk_ext',
self.build_target])
self.bb_vars = get_bb_vars(None, self.build_target)
tmp_dir = self.bb_vars['TMPDIR']
installer = os.path.join(