diff options
author | Ross Burton <ross.burton@intel.com> | 2016-07-18 21:43:35 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-20 10:28:53 +0100 |
commit | bb4298427733da58f96c7702ce547464b3c0aafc (patch) | |
tree | 58d733ff6997f12662758b228621d3b5171a1ed5 /meta/lib/oeqa/selftest | |
parent | 738f47a2d9adbaa27f18cdbfde890290f28278bb (diff) | |
download | poky-bb4298427733da58f96c7702ce547464b3c0aafc.tar.gz |
oeqa/recipetool: update recipe test to pass SHA
(From OE-Core rev: 71dd4c05c41e8b363dc1ecac1f5105d316ee82dc)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest')
-rw-r--r-- | meta/lib/oeqa/selftest/recipetool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/recipetool.py b/meta/lib/oeqa/selftest/recipetool.py index 2e38758aec..f8f6be32a4 100644 --- a/meta/lib/oeqa/selftest/recipetool.py +++ b/meta/lib/oeqa/selftest/recipetool.py | |||
@@ -389,7 +389,7 @@ class RecipetoolTests(RecipetoolBase): | |||
389 | os.makedirs(tempsrc) | 389 | os.makedirs(tempsrc) |
390 | recipefile = os.path.join(self.tempdir, 'libmatchbox.bb') | 390 | recipefile = os.path.join(self.tempdir, 'libmatchbox.bb') |
391 | srcuri = 'git://git.yoctoproject.org/libmatchbox' | 391 | srcuri = 'git://git.yoctoproject.org/libmatchbox' |
392 | result = runCmd('recipetool create -o %s %s -x %s' % (recipefile, srcuri, tempsrc)) | 392 | result = runCmd(['recipetool', 'create', '-o', recipefile, srcuri + ";rev=9f7cf8895ae2d39c465c04cc78e918c157420269", '-x', tempsrc]) |
393 | self.assertTrue(os.path.isfile(recipefile), 'recipetool did not create recipe file; output:\n%s' % result.output) | 393 | self.assertTrue(os.path.isfile(recipefile), 'recipetool did not create recipe file; output:\n%s' % result.output) |
394 | checkvars = {} | 394 | checkvars = {} |
395 | checkvars['LICENSE'] = 'LGPLv2.1' | 395 | checkvars['LICENSE'] = 'LGPLv2.1' |