From: Aníbal Limón Date: Mon, 26 Jun 2017 16:12:40 +0000 (-0500) Subject: selftest/cases/package: Call parent setUpClass method X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f4a978485f870e079d5bb4567ca972f1434b8242;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git selftest/cases/package: Call parent setUpClass method Since config paths are now passed in Test context the setUpClass method is expected to be call. (From OE-Core rev: 7281c995ff2b009c3fb23c7af1d91fe106ca8f87) Signed-off-by: Aníbal Limón Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/selftest/cases/package.py b/meta/lib/oeqa/selftest/cases/package.py index 5b9a6d15851..169698f780d 100644 --- a/meta/lib/oeqa/selftest/cases/package.py +++ b/meta/lib/oeqa/selftest/cases/package.py @@ -17,6 +17,8 @@ class VersionOrdering(OESelftestTestCase): @classmethod def setUpClass(cls): + super().setUpClass() + # Build the tools we need and populate a sysroot bitbake("dpkg-native opkg-native rpm-native python3-native") bitbake("build-sysroots -c build_native_sysroot")