summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/distrodata.py
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2018-06-04 11:21:51 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-06-07 08:52:55 +0100
commitec840e6638f9adc57d247bfe15597dd9524d1b13 (patch)
tree5f54e8c861b7171b2b0206356c23458db1452d09 /meta/lib/oeqa/selftest/cases/distrodata.py
parent5c5be2f0e8a63d7ed78055757528edca577ec7bb (diff)
downloadpoky-ec840e6638f9adc57d247bfe15597dd9524d1b13.tar.gz
oeqa: replace Alex Kanavin's @intel email address with a personal one
As I will be leaving Intel, this address will no longer be valid, so swap it for my personal one for now. (From OE-Core rev: ea58ff101e28dfda3410de66d775df3d8a1e5a96) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/distrodata.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/distrodata.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/distrodata.py b/meta/lib/oeqa/selftest/cases/distrodata.py
index 7b2800464c..e7b5e34956 100644
--- a/meta/lib/oeqa/selftest/cases/distrodata.py
+++ b/meta/lib/oeqa/selftest/cases/distrodata.py
@@ -21,7 +21,7 @@ class Distrodata(OESelftestTestCase):
21 Summary: Test that upstream version checks do not regress 21 Summary: Test that upstream version checks do not regress
22 Expected: Upstream version checks should succeed except for the recipes listed in the exception list. 22 Expected: Upstream version checks should succeed except for the recipes listed in the exception list.
23 Product: oe-core 23 Product: oe-core
24 Author: Alexander Kanavin <alexander.kanavin@intel.com> 24 Author: Alexander Kanavin <alex.kanavin@gmail.com>
25 """ 25 """
26 checkpkg_result = open(os.path.join(get_bb_var("LOG_DIR"), "checkpkg.csv")).readlines()[1:] 26 checkpkg_result = open(os.path.join(get_bb_var("LOG_DIR"), "checkpkg.csv")).readlines()[1:]
27 regressed_failures = [pkg_data[0] for pkg_data in [pkg_line.split('\t') for pkg_line in checkpkg_result] if pkg_data[11] == 'UNKNOWN_BROKEN'] 27 regressed_failures = [pkg_data[0] for pkg_data in [pkg_line.split('\t') for pkg_line in checkpkg_result] if pkg_data[11] == 'UNKNOWN_BROKEN']
@@ -46,7 +46,7 @@ but their recipes claim otherwise by setting UPSTREAM_VERSION_UNKNOWN. Please re
46 Summary: Test that oe-core recipes have a maintainer 46 Summary: Test that oe-core recipes have a maintainer
47 Expected: All oe-core recipes (except a few special static/testing ones) should have a maintainer listed in maintainers.inc file. 47 Expected: All oe-core recipes (except a few special static/testing ones) should have a maintainer listed in maintainers.inc file.
48 Product: oe-core 48 Product: oe-core
49 Author: Alexander Kanavin <alexander.kanavin@intel.com> 49 Author: Alexander Kanavin <alex.kanavin@gmail.com>
50 """ 50 """
51 def is_exception(pkg): 51 def is_exception(pkg):
52 exceptions = ["packagegroup-", "initramfs-", "systemd-machine-units", "target-sdk-provides-dummy"] 52 exceptions = ["packagegroup-", "initramfs-", "systemd-machine-units", "target-sdk-provides-dummy"]