summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-30 14:21:31 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-30 15:07:23 +0100
commita220e2ca3472b41f373771ba0815c8fbdf9e8672 (patch)
treef5580f107d481312af396d70cda927b302401fec
parent3ac7c847e802a67c5c2d49d0becad6ede8354ee7 (diff)
downloadpoky-a220e2ca3472b41f373771ba0815c8fbdf9e8672.tar.gz
selftest/recipetool: Fix test for krogoth
This test was backported and doesn't function quite the same way under krogoth since some of the extended python license checking wasn't yet added. This tweaks the output to match the expected result in krogoth. (From OE-Core rev: fcb2fcae57df403f1fff4b9ddb6b2d52e41aea33) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/recipetool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/recipetool.py b/meta/lib/oeqa/selftest/recipetool.py
index 2cccf2b21b..5cae8a7dbf 100644
--- a/meta/lib/oeqa/selftest/recipetool.py
+++ b/meta/lib/oeqa/selftest/recipetool.py
@@ -451,7 +451,7 @@ class RecipetoolTests(RecipetoolBase):
451 result = runCmd('recipetool create -o %s %s' % (temprecipe, srcuri)) 451 result = runCmd('recipetool create -o %s %s' % (temprecipe, srcuri))
452 self.assertTrue(os.path.isfile(recipefile)) 452 self.assertTrue(os.path.isfile(recipefile))
453 checkvars = {} 453 checkvars = {}
454 checkvars['LICENSE'] = set(['Apache-2.0']) 454 checkvars['LICENSE'] = set(['Apache-2.0', 'Unknown'])
455 checkvars['SRC_URI'] = 'git://github.com/mesonbuild/meson;protocol=https' 455 checkvars['SRC_URI'] = 'git://github.com/mesonbuild/meson;protocol=https'
456 inherits = ['setuptools'] 456 inherits = ['setuptools']
457 self._test_recipe_contents(recipefile, checkvars, inherits) 457 self._test_recipe_contents(recipefile, checkvars, inherits)