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.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/cases/recipetool.py b/meta/lib/oeqa/selftest/cases/recipetool.py
index c2ade2543a..e8aeea3023 100644
--- a/meta/lib/oeqa/selftest/cases/recipetool.py
+++ b/meta/lib/oeqa/selftest/cases/recipetool.py
@@ -370,7 +370,7 @@ class RecipetoolTests(RecipetoolBase):
370 tempsrc = os.path.join(self.tempdir, 'srctree') 370 tempsrc = os.path.join(self.tempdir, 'srctree')
371 os.makedirs(tempsrc) 371 os.makedirs(tempsrc)
372 recipefile = os.path.join(self.tempdir, 'libmatchbox.bb') 372 recipefile = os.path.join(self.tempdir, 'libmatchbox.bb')
373 srcuri = 'git://git.yoctoproject.org/libmatchbox' 373 srcuri = 'git://git.yoctoproject.org/libmatchbox;branch=master'
374 result = runCmd(['recipetool', 'create', '-o', recipefile, srcuri + ";rev=9f7cf8895ae2d39c465c04cc78e918c157420269", '-x', tempsrc]) 374 result = runCmd(['recipetool', 'create', '-o', recipefile, srcuri + ";rev=9f7cf8895ae2d39c465c04cc78e918c157420269", '-x', tempsrc])
375 self.assertTrue(os.path.isfile(recipefile), 'recipetool did not create recipe file; output:\n%s' % result.output) 375 self.assertTrue(os.path.isfile(recipefile), 'recipetool did not create recipe file; output:\n%s' % result.output)
376 checkvars = {} 376 checkvars = {}
@@ -456,7 +456,7 @@ class RecipetoolTests(RecipetoolBase):
456 self.assertTrue(os.path.isfile(recipefile)) 456 self.assertTrue(os.path.isfile(recipefile))
457 checkvars = {} 457 checkvars = {}
458 checkvars['LICENSE'] = set(['Apache-2.0']) 458 checkvars['LICENSE'] = set(['Apache-2.0'])
459 checkvars['SRC_URI'] = 'git://github.com/mesonbuild/meson;protocol=https' 459 checkvars['SRC_URI'] = 'git://github.com/mesonbuild/meson;protocol=https;branch=master'
460 inherits = ['setuptools3'] 460 inherits = ['setuptools3']
461 self._test_recipe_contents(recipefile, checkvars, inherits) 461 self._test_recipe_contents(recipefile, checkvars, inherits)
462 462
@@ -523,7 +523,7 @@ class RecipetoolTests(RecipetoolBase):
523 self.assertTrue(os.path.isfile(recipefile)) 523 self.assertTrue(os.path.isfile(recipefile))
524 checkvars = {} 524 checkvars = {}
525 checkvars['LICENSE'] = set(['GPLv2']) 525 checkvars['LICENSE'] = set(['GPLv2'])
526 checkvars['SRC_URI'] = 'git://git.yoctoproject.org/git/matchbox-terminal;protocol=http' 526 checkvars['SRC_URI'] = 'git://git.yoctoproject.org/git/matchbox-terminal;protocol=http;branch=master'
527 inherits = ['pkgconfig', 'autotools'] 527 inherits = ['pkgconfig', 'autotools']
528 self._test_recipe_contents(recipefile, checkvars, inherits) 528 self._test_recipe_contents(recipefile, checkvars, inherits)
529 529