From e6f7c57b556cad467ff014f29bc9ceb26146a22c Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 14 Jul 2018 09:33:38 +0000 Subject: 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: 1ed60bfb46569a8b8c29f24187390ba79686486a) Signed-off-by: Richard Purdie --- meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-yocto-bsp') 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): # Ensure we're actually testing that this gets built and not that # it was around from an earlier build - bitbake('-c cleansstate systemd-boot') + bitbake('-c clean systemd-boot') runCmd('rm -f %s' % systemdbootfile) self._common_build() -- cgit v1.2.3-54-g00ecf