summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/buildperf/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/buildperf/base.py')
-rw-r--r--meta/lib/oeqa/buildperf/base.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py
index 2c102554b9..59dd02521c 100644
--- a/meta/lib/oeqa/buildperf/base.py
+++ b/meta/lib/oeqa/buildperf/base.py
@@ -408,9 +408,14 @@ class BuildPerfTestCase(unittest.TestCase):
408 int((e_sec % 3600) / 60), 408 int((e_sec % 3600) / 60),
409 e_sec % 60)) 409 e_sec % 60))
410 410
411 def measure_disk_usage(self, path, name, legend): 411 def measure_disk_usage(self, path, name, legend, apparent_size=False):
412 """Estimate disk usage of a file or directory""" 412 """Estimate disk usage of a file or directory"""
413 ret = runCmd2(['du', '-s', path]) 413 cmd = ['du', '-s', '--block-size', '1024']
414 if apparent_size:
415 cmd.append('--apparent-size')
416 cmd.append(path)
417
418 ret = runCmd2(cmd)
414 size = int(ret.output.split()[0]) 419 size = int(ret.output.split()[0])
415 log.debug("Size of %s path is %s", path, size) 420 log.debug("Size of %s path is %s", path, size)
416 measurement = {'type': self.DISKUSAGE, 421 measurement = {'type': self.DISKUSAGE,