diff options
Diffstat (limited to 'meta/lib')
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/imagefeatures.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oeqa/selftest/cases/imagefeatures.py b/meta/lib/oeqa/selftest/cases/imagefeatures.py index dc88c222bd..74811d2c0a 100644 --- a/meta/lib/oeqa/selftest/cases/imagefeatures.py +++ b/meta/lib/oeqa/selftest/cases/imagefeatures.py | |||
| @@ -319,7 +319,7 @@ SKIP_RECIPE[busybox] = "Don't build this" | |||
| 319 | """ | 319 | """ |
| 320 | config = """ | 320 | config = """ |
| 321 | DISTRO_FEATURES:append = " api-documentation" | 321 | DISTRO_FEATURES:append = " api-documentation" |
| 322 | CORE_IMAGE_EXTRA_INSTALL = "man-pages kmod-doc" | 322 | CORE_IMAGE_EXTRA_INSTALL = "man-pages" |
| 323 | """ | 323 | """ |
| 324 | self.write_config(config) | 324 | self.write_config(config) |
| 325 | bitbake("core-image-minimal") | 325 | bitbake("core-image-minimal") |
| @@ -330,7 +330,7 @@ CORE_IMAGE_EXTRA_INSTALL = "man-pages kmod-doc" | |||
| 330 | self.assertEqual(status, 1, 'Failed to run apropos: %s' % (output)) | 330 | self.assertEqual(status, 1, 'Failed to run apropos: %s' % (output)) |
| 331 | self.assertIn("iso_8859_15", output) | 331 | self.assertIn("iso_8859_15", output) |
| 332 | 332 | ||
| 333 | # This manpage is provided by kmod | 333 | # This manpage is provided by man-pages |
| 334 | status, output = qemu.run_serial("man --pager=cat modprobe") | 334 | status, output = qemu.run_serial("man --pager=cat intro") |
| 335 | self.assertEqual(status, 1, 'Failed to run man: %s' % (output)) | 335 | self.assertEqual(status, 1, 'Failed to run man: %s' % (output)) |
| 336 | self.assertIn("force-modversion", output) | 336 | self.assertIn("introduction to user commands", output) |
