From 5887f81bb585d0a697b91daf7f7dd6ccb1d444e2 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: f927d1582c93ea71ef760e4de8d5a6accc365284) 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