]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/selftest: Added testcase decorators for 2 testcases
authorDaniel Istrate <daniel.alexandrux.istrate@intel.com>
Fri, 11 Dec 2015 09:58:15 +0000 (11:58 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 16 Dec 2015 12:11:22 +0000 (12:11 +0000)
bblayers: test_bitbakelayers_showrecipes    1384
wic:      test_directdisk_bootloader_config 1385

Signed-off-by: Daniel Istrate <daniel.alexandrux.istrate@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oeqa/selftest/bblayers.py
meta/lib/oeqa/selftest/wic.py

index 545292510487d0aae902023d860e5f5723d4dfc3..b88c25ecfbf6a1c46a2e4fde7e5f7474c0a8c5ef 100644 (file)
@@ -61,6 +61,7 @@ class BitbakeLayers(oeSelfTest):
         result = runCmd('bitbake-layers show-layers')
         self.assertNotIn('meta-skeleton', result.output, msg = "meta-skeleton should have been removed at this step.  bitbake-layers show-layers output: %s" % result.output)
 
+    @testcase(1384)
     def test_bitbakelayers_showrecipes(self):
         result = runCmd('bitbake-layers show-recipes')
         self.assertIn('aspell:', result.output)
index f4404bfe552a1bd37ec8c231351197eca4fb01d2..55f6f82ab9d579a10de814bc8c367058b90e8dbe 100644 (file)
@@ -257,7 +257,7 @@ class Wic(oeSelfTest):
                                    % image).status)
         self.assertEqual(1, len(glob(self.resultdir + "%s-*direct" % image)))
 
-    #@testcase()
+    @testcase(1385)
     def test_directdisk_bootloader_config(self):
         """Test creation of directdisk-bootloader-config image"""
         image = "directdisk-bootloader-config"