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:25 +0100 |
commit | f4a978485f870e079d5bb4567ca972f1434b8242 (patch) | |
tree | 6877a1470e6da2ec6b63aa6dfbe6011728866c5b /meta/lib/oeqa | |
parent | bec45829e3c27b7e7df8769725a5b49ef6d1f679 (diff) | |
download | poky-f4a978485f870e079d5bb4567ca972f1434b8242.tar.gz |
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 <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-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): | |||
17 | 17 | ||
18 | @classmethod | 18 | @classmethod |
19 | def setUpClass(cls): | 19 | def setUpClass(cls): |
20 | super().setUpClass() | ||
21 | |||
20 | # Build the tools we need and populate a sysroot | 22 | # Build the tools we need and populate a sysroot |
21 | bitbake("dpkg-native opkg-native rpm-native python3-native") | 23 | bitbake("dpkg-native opkg-native rpm-native python3-native") |
22 | bitbake("build-sysroots -c build_native_sysroot") | 24 | bitbake("build-sysroots -c build_native_sysroot") |