summaryrefslogtreecommitdiffstats
path: root/meta-yocto-bsp
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-07-14 09:33:38 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-07-15 16:19:20 +0100
commit5887f81bb585d0a697b91daf7f7dd6ccb1d444e2 (patch)
tree1770c594036fa3edd7e22cd226f2ab2e41e630f0 /meta-yocto-bsp
parent90f7edb32ac2500d93bb7ca5045a9d048f551223 (diff)
downloadpoky-5887f81bb585d0a697b91daf7f7dd6ccb1d444e2.tar.gz
oeqa/selftest/systemd_boot: Never use cleansstate in QA tests without special handling of SSTATE_DIR
Removing things straight from the live sstate directory is prone to issues since other builds may be relying on the artefact presence. Also, cleansstate is very slow on the huge sstate that the autobuilder has on slow NFS drives. This may well be causing long buildtimes in oe-selftest as the time taken to remove the artefact by be long. (From meta-yocto rev: f927d1582c93ea71ef760e4de8d5a6accc365284) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp')
-rw-r--r--meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py b/meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py
index dd5eeec163..26c775c09e 100644
--- a/meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py
+++ b/meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py
@@ -44,7 +44,7 @@ class Systemdboot(OESelftestTestCase):
44 44
45 # Ensure we're actually testing that this gets built and not that 45 # Ensure we're actually testing that this gets built and not that
46 # it was around from an earlier build 46 # it was around from an earlier build
47 bitbake('-c cleansstate systemd-boot') 47 bitbake('-c clean systemd-boot')
48 runCmd('rm -f %s' % systemdbootfile) 48 runCmd('rm -f %s' % systemdbootfile)
49 49
50 self._common_build() 50 self._common_build()