summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/recipetool.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/recipetool.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/recipetool.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/recipetool.py b/meta/lib/oeqa/selftest/cases/recipetool.py
index 46f0a7206b..bdd405f1cc 100644
--- a/meta/lib/oeqa/selftest/cases/recipetool.py
+++ b/meta/lib/oeqa/selftest/cases/recipetool.py
@@ -443,6 +443,7 @@ class RecipetoolTests(RecipetoolBase):
443 inherits = ['cmake', 'python-dir', 'gettext', 'pkgconfig'] 443 inherits = ['cmake', 'python-dir', 'gettext', 'pkgconfig']
444 self._test_recipe_contents(recipefile, checkvars, inherits) 444 self._test_recipe_contents(recipefile, checkvars, inherits)
445 445
446 @OETestID(1638)
446 def test_recipetool_create_github(self): 447 def test_recipetool_create_github(self):
447 # Basic test to see if github URL mangling works 448 # Basic test to see if github URL mangling works
448 temprecipe = os.path.join(self.tempdir, 'recipe') 449 temprecipe = os.path.join(self.tempdir, 'recipe')
@@ -457,6 +458,7 @@ class RecipetoolTests(RecipetoolBase):
457 inherits = ['setuptools'] 458 inherits = ['setuptools']
458 self._test_recipe_contents(recipefile, checkvars, inherits) 459 self._test_recipe_contents(recipefile, checkvars, inherits)
459 460
461 @OETestID(1639)
460 def test_recipetool_create_github_tarball(self): 462 def test_recipetool_create_github_tarball(self):
461 # Basic test to ensure github URL mangling doesn't apply to release tarballs 463 # Basic test to ensure github URL mangling doesn't apply to release tarballs
462 temprecipe = os.path.join(self.tempdir, 'recipe') 464 temprecipe = os.path.join(self.tempdir, 'recipe')
@@ -472,6 +474,7 @@ class RecipetoolTests(RecipetoolBase):
472 inherits = ['setuptools'] 474 inherits = ['setuptools']
473 self._test_recipe_contents(recipefile, checkvars, inherits) 475 self._test_recipe_contents(recipefile, checkvars, inherits)
474 476
477 @OETestID(1637)
475 def test_recipetool_create_git_http(self): 478 def test_recipetool_create_git_http(self):
476 # Basic test to check http git URL mangling works 479 # Basic test to check http git URL mangling works
477 temprecipe = os.path.join(self.tempdir, 'recipe') 480 temprecipe = os.path.join(self.tempdir, 'recipe')
@@ -499,6 +502,7 @@ class RecipetoolTests(RecipetoolBase):
499 shutil.copy(srcfile, dstfile) 502 shutil.copy(srcfile, dstfile)
500 self.track_for_cleanup(dstfile) 503 self.track_for_cleanup(dstfile)
501 504
505 @OETestID(1640)
502 def test_recipetool_load_plugin(self): 506 def test_recipetool_load_plugin(self):
503 """Test that recipetool loads only the first found plugin in BBPATH.""" 507 """Test that recipetool loads only the first found plugin in BBPATH."""
504 508