diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2017-02-03 10:27:07 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-05 09:20:23 +0000 |
commit | 7e7252108d5e3503888efe0e603b3883fdc793e8 (patch) | |
tree | 9e105a1d9c89a549d49d5bc69ab4558e2c4456fb /meta/lib/oeqa | |
parent | 36783b17085e73bbf47242e87bbf054352ae0a9d (diff) | |
download | openembedded-core-7e7252108d5e3503888efe0e603b3883fdc793e8.tar.gz openembedded-core-7e7252108d5e3503888efe0e603b3883fdc793e8.tar.bz2 openembedded-core-7e7252108d5e3503888efe0e603b3883fdc793e8.zip |
oeqa.buildperf: reword test descriptions
In an attempt to make them more compact and coherent.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/buildperf/test_basic.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oeqa/buildperf/test_basic.py b/meta/lib/oeqa/buildperf/test_basic.py index 7a48c1e77f..47118306b7 100644 --- a/meta/lib/oeqa/buildperf/test_basic.py +++ b/meta/lib/oeqa/buildperf/test_basic.py @@ -22,7 +22,7 @@ class Test1P1(BuildPerfTestCase): build_target = 'core-image-sato' def test1(self): - """Measure wall clock of bitbake core-image-sato and size of tmp dir""" + """Build core-image-sato""" self.rm_tmp() self.rm_sstate() self.rm_cache() @@ -36,7 +36,7 @@ class Test1P2(BuildPerfTestCase): build_target = 'virtual/kernel' def test12(self): - """Measure bitbake virtual/kernel""" + """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']) @@ -72,7 +72,7 @@ class Test2(BuildPerfTestCase): build_target = 'core-image-sato' def test2(self): - """Measure bitbake core-image-sato -c rootfs with sstate""" + """Run core-image-sato do_rootfs with sstate""" # Build once in order to populate sstate cache self.log_cmd_output(['bitbake', self.build_target]) @@ -86,7 +86,7 @@ class Test2(BuildPerfTestCase): class Test3(BuildPerfTestCase): def test3(self): - """Parsing time metrics (bitbake -p)""" + """Bitbake parsing (bitbake -p)""" # Drop all caches and parse self.rm_cache() oe.path.remove(os.path.join(self.bb_vars['TMPDIR'], 'cache'), True) |