diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2018-06-04 11:21:51 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-07 08:52:55 +0100 |
commit | ec840e6638f9adc57d247bfe15597dd9524d1b13 (patch) | |
tree | 5f54e8c861b7171b2b0206356c23458db1452d09 | |
parent | 5c5be2f0e8a63d7ed78055757528edca577ec7bb (diff) | |
download | poky-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>
-rw-r--r-- | meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/cases/rpm.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/selftest/cases/distrodata.py | 4 | ||||
-rw-r--r-- | meta/lib/oeqa/selftest/cases/runtime_test.py | 4 | ||||
-rw-r--r-- | meta/lib/oeqa/selftest/cases/signing.py | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py b/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py index 1aa7274701..64a3502370 100644 --- a/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py +++ b/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py | |||
@@ -27,7 +27,7 @@ class DnfSelftest(DnfTest): | |||
27 | Expected: 1. Feeds were correctly set for dnf | 27 | Expected: 1. Feeds were correctly set for dnf |
28 | 2. Update recovers packages from host's repo | 28 | 2. Update recovers packages from host's repo |
29 | Author: Humberto Ibarra <humberto.ibarra.lopez@intel.com> | 29 | Author: Humberto Ibarra <humberto.ibarra.lopez@intel.com> |
30 | Author: Alexander Kanavin <alexander.kanavin@intel.com> | 30 | Author: Alexander Kanavin <alex.kanavin@gmail.com> |
31 | """ | 31 | """ |
32 | # When we created an image, we had to supply fake ip and port | 32 | # When we created an image, we had to supply fake ip and port |
33 | # for the feeds. Now we can patch the real ones into the config file. | 33 | # for the feeds. Now we can patch the real ones into the config file. |
diff --git a/meta/lib/oeqa/runtime/cases/rpm.py b/meta/lib/oeqa/runtime/cases/rpm.py index 84c59a614e..58df28bd29 100644 --- a/meta/lib/oeqa/runtime/cases/rpm.py +++ b/meta/lib/oeqa/runtime/cases/rpm.py | |||
@@ -107,7 +107,7 @@ class RpmInstallRemoveTest(OERuntimeTestCase): | |||
107 | Expected: There should be some RPM prefixed entries in the above file. | 107 | Expected: There should be some RPM prefixed entries in the above file. |
108 | Product: BSPs | 108 | Product: BSPs |
109 | Author: Alexandru Georgescu <alexandru.c.georgescu@intel.com> | 109 | Author: Alexandru Georgescu <alexandru.c.georgescu@intel.com> |
110 | Author: Alexander Kanavin <alexander.kanavin@intel.com> | 110 | Author: Alexander Kanavin <alex.kanavin@gmail.com> |
111 | AutomatedBy: Daniel Istrate <daniel.alexandrux.istrate@intel.com> | 111 | AutomatedBy: Daniel Istrate <daniel.alexandrux.istrate@intel.com> |
112 | """ | 112 | """ |
113 | db_files_cmd = 'ls /var/lib/rpm/__db.*' | 113 | db_files_cmd = 'ls /var/lib/rpm/__db.*' |
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"] |
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py index 9c9b4b3411..30fd9b2a50 100644 --- a/meta/lib/oeqa/selftest/cases/runtime_test.py +++ b/meta/lib/oeqa/selftest/cases/runtime_test.py | |||
@@ -135,7 +135,7 @@ class TestImage(OESelftestTestCase): | |||
135 | Summary: Check package feeds functionality for dnf | 135 | Summary: Check package feeds functionality for dnf |
136 | Expected: 1. Check that remote package feeds can be accessed | 136 | Expected: 1. Check that remote package feeds can be accessed |
137 | Product: oe-core | 137 | Product: oe-core |
138 | Author: Alexander Kanavin <alexander.kanavin@intel.com> | 138 | Author: Alexander Kanavin <alex.kanavin@gmail.com> |
139 | """ | 139 | """ |
140 | if get_bb_var('DISTRO') == 'poky-tiny': | 140 | if get_bb_var('DISTRO') == 'poky-tiny': |
141 | self.skipTest('core-image-full-cmdline not buildable for poky-tiny') | 141 | self.skipTest('core-image-full-cmdline not buildable for poky-tiny') |
@@ -231,7 +231,7 @@ class Postinst(OESelftestTestCase): | |||
231 | Expected: The scriptlet failure is properly reported. | 231 | Expected: The scriptlet failure is properly reported. |
232 | The file that is created after the error in the scriptlet is not present. | 232 | The file that is created after the error in the scriptlet is not present. |
233 | Product: oe-core | 233 | Product: oe-core |
234 | Author: Alexander Kanavin <alexander.kanavin@intel.com> | 234 | Author: Alexander Kanavin <alex.kanavin@gmail.com> |
235 | """ | 235 | """ |
236 | 236 | ||
237 | import oe.path | 237 | import oe.path |
diff --git a/meta/lib/oeqa/selftest/cases/signing.py b/meta/lib/oeqa/selftest/cases/signing.py index a750cfc7b2..a130ac96cf 100644 --- a/meta/lib/oeqa/selftest/cases/signing.py +++ b/meta/lib/oeqa/selftest/cases/signing.py | |||
@@ -41,7 +41,7 @@ class Signing(OESelftestTestCase): | |||
41 | Expected: Images can be created from signed packages | 41 | Expected: Images can be created from signed packages |
42 | Product: oe-core | 42 | Product: oe-core |
43 | Author: Daniel Istrate <daniel.alexandrux.istrate@intel.com> | 43 | Author: Daniel Istrate <daniel.alexandrux.istrate@intel.com> |
44 | Author: Alexander Kanavin <alexander.kanavin@intel.com> | 44 | Author: Alexander Kanavin <alex.kanavin@gmail.com> |
45 | AutomatedBy: Daniel Istrate <daniel.alexandrux.istrate@intel.com> | 45 | AutomatedBy: Daniel Istrate <daniel.alexandrux.istrate@intel.com> |
46 | """ | 46 | """ |
47 | import oe.packagedata | 47 | import oe.packagedata |