summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/selftest/bblayers.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/meta/lib/oeqa/selftest/bblayers.py b/meta/lib/oeqa/selftest/bblayers.py
index d23675e84a..677161f411 100644
--- a/meta/lib/oeqa/selftest/bblayers.py
+++ b/meta/lib/oeqa/selftest/bblayers.py
@@ -68,20 +68,16 @@ class BitbakeLayers(oeSelfTest):
68 68
69 @testcase(1384) 69 @testcase(1384)
70 def test_bitbakelayers_showrecipes(self): 70 def test_bitbakelayers_showrecipes(self):
71 distro = get_bb_var('DISTRO')
71 result = runCmd('bitbake-layers show-recipes') 72 result = runCmd('bitbake-layers show-recipes')
72 self.assertIn('aspell:', result.output) 73 self.assertIn('aspell:', result.output)
73 self.assertIn('mtd-utils:', result.output) 74 self.assertIn('mtd-utils:', result.output)
74 self.assertIn('linux-yocto:', result.output)
75 self.assertIn('core-image-minimal:', result.output) 75 self.assertIn('core-image-minimal:', result.output)
76 result = runCmd('bitbake-layers show-recipes mtd-utils') 76 result = runCmd('bitbake-layers show-recipes mtd-utils')
77 self.assertIn('mtd-utils:', result.output) 77 self.assertIn('mtd-utils:', result.output)
78 self.assertNotIn('aspell:', result.output) 78 self.assertNotIn('aspell:', result.output)
79 result = runCmd('bitbake-layers show-recipes -i kernel')
80 self.assertIn('linux-yocto:', result.output)
81 self.assertNotIn('mtd-utils:', result.output)
82 result = runCmd('bitbake-layers show-recipes -i image') 79 result = runCmd('bitbake-layers show-recipes -i image')
83 self.assertIn('core-image-minimal', result.output) 80 self.assertIn('core-image-minimal', result.output)
84 self.assertNotIn('linux-yocto:', result.output)
85 self.assertNotIn('mtd-utils:', result.output) 81 self.assertNotIn('mtd-utils:', result.output)
86 result = runCmd('bitbake-layers show-recipes -i cmake,pkgconfig') 82 result = runCmd('bitbake-layers show-recipes -i cmake,pkgconfig')
87 self.assertIn('libproxy:', result.output) 83 self.assertIn('libproxy:', result.output)