From 842cba1820416d79e30e3f1940e2486707fc7cff Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 23 Aug 2021 16:19:46 +0100 Subject: 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 --- meta/lib/oeqa/selftest/cases/distrodata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/lib/oeqa') 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 -- cgit 1.2.3-korg