summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest')
-rw-r--r--meta/lib/oeqa/selftest/cases/recipetool.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/recipetool.py b/meta/lib/oeqa/selftest/cases/recipetool.py
index 780e25b6c8..5694d6fb69 100644
--- a/meta/lib/oeqa/selftest/cases/recipetool.py
+++ b/meta/lib/oeqa/selftest/cases/recipetool.py
@@ -456,8 +456,9 @@ class RecipetoolCreateTests(RecipetoolBase):
456 os.makedirs(temprecipe) 456 os.makedirs(temprecipe)
457 recipefile = os.path.join(temprecipe, 'meson_git.bb') 457 recipefile = os.path.join(temprecipe, 'meson_git.bb')
458 srcuri = 'https://github.com/mesonbuild/meson;rev=1.3.1' 458 srcuri = 'https://github.com/mesonbuild/meson;rev=1.3.1'
459 result = runCmd(['recipetool', 'create', '-o', temprecipe, srcuri]) 459 cmd = ['recipetool', 'create', '-o', temprecipe, srcuri]
460 self.assertTrue(os.path.isfile(recipefile)) 460 result = runCmd(cmd)
461 self.assertTrue(os.path.isfile(recipefile), msg="recipe %s not created for command %s, output %s" % (recipefile, " ".join(cmd), result.output))
461 checkvars = {} 462 checkvars = {}
462 checkvars['LICENSE'] = set(['Apache-2.0', 'Proprietary', 'Unknown']) 463 checkvars['LICENSE'] = set(['Apache-2.0', 'Proprietary', 'Unknown'])
463 checkvars['SRC_URI'] = 'git://github.com/mesonbuild/meson;protocol=https;branch=1.3' 464 checkvars['SRC_URI'] = 'git://github.com/mesonbuild/meson;protocol=https;branch=1.3'