From: Richard Purdie Date: Mon, 23 Aug 2021 15:19:46 +0000 (+0100) Subject: oeqa/selftest/distrodata: Fix up rust maintainer testing X-Git-Tag: uninative-3.4~25 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=842cba1820416d79e30e3f1940e2486707fc7cff;p=openembedded-core.git 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. Signed-off-by: Richard Purdie --- 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 def is_maintainer_exception(entry): exceptions = ["musl", "newlib", "linux-yocto", "linux-dummy", "mesa-gl", "libgfortran", - "cve-update-db-native"] + "cve-update-db-native", "rust"] for i in exceptions: if i in entry: return True