summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/buildperf/test_basic.py8
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):
22 build_target = 'core-image-sato' 22 build_target = 'core-image-sato'
23 23
24 def test1(self): 24 def test1(self):
25 """Measure wall clock of bitbake core-image-sato and size of tmp dir""" 25 """Build core-image-sato"""
26 self.rm_tmp() 26 self.rm_tmp()
27 self.rm_sstate() 27 self.rm_sstate()
28 self.rm_cache() 28 self.rm_cache()
@@ -36,7 +36,7 @@ class Test1P2(BuildPerfTestCase):
36 build_target = 'virtual/kernel' 36 build_target = 'virtual/kernel'
37 37
38 def test12(self): 38 def test12(self):
39 """Measure bitbake virtual/kernel""" 39 """Build virtual/kernel"""
40 # Build and cleans state in order to get all dependencies pre-built 40 # Build and cleans state in order to get all dependencies pre-built
41 self.log_cmd_output(['bitbake', self.build_target]) 41 self.log_cmd_output(['bitbake', self.build_target])
42 self.log_cmd_output(['bitbake', self.build_target, '-c', 'cleansstate']) 42 self.log_cmd_output(['bitbake', self.build_target, '-c', 'cleansstate'])
@@ -72,7 +72,7 @@ class Test2(BuildPerfTestCase):
72 build_target = 'core-image-sato' 72 build_target = 'core-image-sato'
73 73
74 def test2(self): 74 def test2(self):
75 """Measure bitbake core-image-sato -c rootfs with sstate""" 75 """Run core-image-sato do_rootfs with sstate"""
76 # Build once in order to populate sstate cache 76 # Build once in order to populate sstate cache
77 self.log_cmd_output(['bitbake', self.build_target]) 77 self.log_cmd_output(['bitbake', self.build_target])
78 78
@@ -86,7 +86,7 @@ class Test2(BuildPerfTestCase):
86class Test3(BuildPerfTestCase): 86class Test3(BuildPerfTestCase):
87 87
88 def test3(self): 88 def test3(self):
89 """Parsing time metrics (bitbake -p)""" 89 """Bitbake parsing (bitbake -p)"""
90 # Drop all caches and parse 90 # Drop all caches and parse
91 self.rm_cache() 91 self.rm_cache()
92 oe.path.remove(os.path.join(self.bb_vars['TMPDIR'], 'cache'), True) 92 oe.path.remove(os.path.join(self.bb_vars['TMPDIR'], 'cache'), True)