diff options
Diffstat (limited to 'meta/lib')
| -rw-r--r-- | meta/lib/oe/utils.py | 4 | ||||
| -rw-r--r-- | meta/lib/oeqa/manual/bsp-hw.json | 2 | ||||
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/containerimage.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py index 84790b7dff..46fc76c261 100644 --- a/meta/lib/oe/utils.py +++ b/meta/lib/oe/utils.py | |||
| @@ -221,12 +221,12 @@ def packages_filter_out_system(d): | |||
| 221 | PN-dbg PN-doc PN-locale-eb-gb removed. | 221 | PN-dbg PN-doc PN-locale-eb-gb removed. |
| 222 | """ | 222 | """ |
| 223 | pn = d.getVar('PN') | 223 | pn = d.getVar('PN') |
| 224 | blacklist = [pn + suffix for suffix in ('', '-dbg', '-dev', '-doc', '-locale', '-staticdev', '-src')] | 224 | pkgfilter = [pn + suffix for suffix in ('', '-dbg', '-dev', '-doc', '-locale', '-staticdev', '-src')] |
| 225 | localepkg = pn + "-locale-" | 225 | localepkg = pn + "-locale-" |
| 226 | pkgs = [] | 226 | pkgs = [] |
| 227 | 227 | ||
| 228 | for pkg in d.getVar('PACKAGES').split(): | 228 | for pkg in d.getVar('PACKAGES').split(): |
| 229 | if pkg not in blacklist and localepkg not in pkg: | 229 | if pkg not in pkgfilter and localepkg not in pkg: |
| 230 | pkgs.append(pkg) | 230 | pkgs.append(pkg) |
| 231 | return pkgs | 231 | return pkgs |
| 232 | 232 | ||
diff --git a/meta/lib/oeqa/manual/bsp-hw.json b/meta/lib/oeqa/manual/bsp-hw.json index ca91987e31..308a0807f3 100644 --- a/meta/lib/oeqa/manual/bsp-hw.json +++ b/meta/lib/oeqa/manual/bsp-hw.json | |||
| @@ -26,7 +26,7 @@ | |||
| 26 | "expected_results": "" | 26 | "expected_results": "" |
| 27 | }, | 27 | }, |
| 28 | "5": { | 28 | "5": { |
| 29 | "action": "Remove USB, and reboot into new installed system. \nNote: If installation was successfully completed and received this message \"\"(sdx): Volume was not properly unmounted...Please run fsck.\"\" ignore it because this was whitelisted according to bug 9652.", | 29 | "action": "Remove USB, and reboot into new installed system. \nNote: If installation was successfully completed and received this message \"\"(sdx): Volume was not properly unmounted...Please run fsck.\"\" ignore it because this was allowed according to bug 9652.", |
| 30 | "expected_results": "" | 30 | "expected_results": "" |
| 31 | } | 31 | } |
| 32 | }, | 32 | }, |
diff --git a/meta/lib/oeqa/selftest/cases/containerimage.py b/meta/lib/oeqa/selftest/cases/containerimage.py index 3068c9ba26..e0aea1a1ef 100644 --- a/meta/lib/oeqa/selftest/cases/containerimage.py +++ b/meta/lib/oeqa/selftest/cases/containerimage.py | |||
| @@ -13,7 +13,7 @@ from oeqa.utils.commands import bitbake, get_bb_vars, runCmd | |||
| 13 | # The only package added to the image is container_image_testpkg, which | 13 | # The only package added to the image is container_image_testpkg, which |
| 14 | # contains one file. However, due to some other things not cleaning up during | 14 | # contains one file. However, due to some other things not cleaning up during |
| 15 | # rootfs creation, there is some cruft. Ideally bugs will be filed and the | 15 | # rootfs creation, there is some cruft. Ideally bugs will be filed and the |
| 16 | # cruft removed, but for now we whitelist some known set. | 16 | # cruft removed, but for now we ignore some known set. |
| 17 | # | 17 | # |
| 18 | # Also for performance reasons we're only checking the cruft when using ipk. | 18 | # Also for performance reasons we're only checking the cruft when using ipk. |
| 19 | # When using deb, and rpm it is a bit different and we could test all | 19 | # When using deb, and rpm it is a bit different and we could test all |
