diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2017-06-26 11:12:40 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-21 08:44:19 +0100 |
commit | 7281c995ff2b009c3fb23c7af1d91fe106ca8f87 (patch) | |
tree | c65163c4e364295bf97a1b64bc11af694fd4edaa /meta/lib | |
parent | b4740d2b325a80bcecc5e56dff9add9081fcd31b (diff) | |
download | openembedded-core-7281c995ff2b009c3fb23c7af1d91fe106ca8f87.tar.gz openembedded-core-7281c995ff2b009c3fb23c7af1d91fe106ca8f87.tar.bz2 openembedded-core-7281c995ff2b009c3fb23c7af1d91fe106ca8f87.zip |
selftest/cases/package: Call parent setUpClass method
Since config paths are now passed in Test context the setUpClass
method is expected to be call.
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/package.py b/meta/lib/oeqa/selftest/cases/package.py index 5b9a6d1585..169698f780 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") |