diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-23 16:19:46 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-26 22:09:44 +0100 |
commit | c9de49fb8078e91c26f123eed3601941d5461326 (patch) | |
tree | c0a43cbb181d9d5f1ce3244b8341475478f14f69 | |
parent | d6f10a5d6552f653618d2da1b8c7a11da65daf7d (diff) | |
download | poky-c9de49fb8078e91c26f123eed3601941d5461326.tar.gz |
oeqa/selftest/distrodata: Fix up rust maintainer testing
Since the target rust recipe is skipped but the native variant is not,
this confuses the test. Add rust to the list of special cases to avoid
test failures as the current code can't handle the skip.
(From OE-Core rev: 842cba1820416d79e30e3f1940e2486707fc7cff)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/selftest/cases/distrodata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/distrodata.py b/meta/lib/oeqa/selftest/cases/distrodata.py index 4a45855d27..908979804a 100644 --- a/meta/lib/oeqa/selftest/cases/distrodata.py +++ b/meta/lib/oeqa/selftest/cases/distrodata.py | |||
@@ -93,7 +93,7 @@ The following recipes do not have a DESCRIPTION. Please add an entry for DESCRIP | |||
93 | 93 | ||
94 | def is_maintainer_exception(entry): | 94 | def is_maintainer_exception(entry): |
95 | exceptions = ["musl", "newlib", "linux-yocto", "linux-dummy", "mesa-gl", "libgfortran", | 95 | exceptions = ["musl", "newlib", "linux-yocto", "linux-dummy", "mesa-gl", "libgfortran", |
96 | "cve-update-db-native"] | 96 | "cve-update-db-native", "rust"] |
97 | for i in exceptions: | 97 | for i in exceptions: |
98 | if i in entry: | 98 | if i in entry: |
99 | return True | 99 | return True |