diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-03 23:19:08 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-08 15:41:36 +0100 |
commit | a261333f6591ea94afc567dee04a2e3c6d5059cf (patch) | |
tree | 574dfea9a37ad966049387185ace1cd1e940cdf7 /meta/lib | |
parent | aad10f24eea5a6b54de17138ab5c0f4ed1355a8f (diff) | |
download | openembedded-core-contrib-a261333f6591ea94afc567dee04a2e3c6d5059cf.tar.gz |
selftest/reproducible: Exclude rust/rust-dbg for now until we can fix
There looks to be a reproducibility issue left in one of the rust
libraries. It doesn't appear to be a string issue but some binary
problem. Disable rust from the reproducibility testing until we can
get to the bottom of the issue (allowing wider testing of all the
other improvements).
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/reproducible.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py index 5042c11d8eb..f4dd779842a 100644 --- a/meta/lib/oeqa/selftest/cases/reproducible.py +++ b/meta/lib/oeqa/selftest/cases/reproducible.py @@ -16,6 +16,8 @@ import os import datetime exclude_packages = [ + 'rust', + 'rust-dbg' ] def is_excluded(package): |