diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-16 09:39:30 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-28 16:56:30 +0000 |
commit | 1da4c2e18e0897b3dc24d0d54b5d949bec39c990 (patch) | |
tree | 40000257cba7bb1a10810c6c94896197c367f2e9 /meta | |
parent | 7dce3564534ee67c88feaa14304dbee7161df145 (diff) | |
download | openembedded-core-1da4c2e18e0897b3dc24d0d54b5d949bec39c990.tar.gz openembedded-core-1da4c2e18e0897b3dc24d0d54b5d949bec39c990.tar.bz2 openembedded-core-1da4c2e18e0897b3dc24d0d54b5d949bec39c990.zip |
testimage: Enable autorunning of the package manager testsuites
Now that the hangs in httpservice are fixed we can let these tests
auto skip as appropriate.
(From OE-Core rev: 42a0d70291d551578e21f590fcb85ca72a78ccb5)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/testimage.bbclass | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index cfba0d646b..1f42f6a768 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass @@ -44,9 +44,7 @@ BASICTESTSUITE = "\ ping date df ssh scp python perl gi ptest parselogs \ logrotate connman systemd oe_syslog pam stap ldd xorg \ kernelmodule gcc buildcpio buildlzip buildgalculator \ - ${@bb.utils.contains('IMAGE_PKGTYPE', 'rpm', 'dnf rpm', '', d)} \ - ${@bb.utils.contains('IMAGE_PKGTYPE', 'ipk', 'opkg', '', d)} \ - ${@bb.utils.contains('IMAGE_PKGTYPE', 'deb', 'apt', '', d)}" + dnf rpm opkg apt" DEFAULT_TEST_SUITES = "${BASICTESTSUITE}" |