aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/buildoptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/buildoptions.py')
-rw-r--r--meta/lib/oeqa/selftest/buildoptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/buildoptions.py b/meta/lib/oeqa/selftest/buildoptions.py
index 93b02cf8a2..8ff40baddc 100644
--- a/meta/lib/oeqa/selftest/buildoptions.py
+++ b/meta/lib/oeqa/selftest/buildoptions.py
@@ -51,7 +51,7 @@ class ImageOptionsTests(oeSelfTest):
class DiskMonTest(oeSelfTest):
def test_stoptask_behavior(self):
- result = runCmd("df -k %s" % os.getcwd())
+ result = runCmd("df -Pk %s" % os.getcwd())
size = result.output.split("\n")[1].split()[3]
self.write_config('BB_DISKMON_DIRS = "STOPTASKS,${TMPDIR},%sK,4510K"' % size)
res = bitbake("m4", ignore_status = True)