]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/selftest/distrodata: Fix up rust maintainer testing
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 23 Aug 2021 15:19:46 +0000 (16:19 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 26 Aug 2021 21:09:25 +0000 (22:09 +0100)
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 <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/selftest/cases/distrodata.py

index 4a45855d27cba0620d92ada2337c288058144402..908979804ab3ad8867b64b5968ac6576d2d0e352 100644 (file)
@@ -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