diff options
Diffstat (limited to 'meta/lib/oeqa/selftest/recipetool.py')
| -rw-r--r-- | meta/lib/oeqa/selftest/recipetool.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/recipetool.py b/meta/lib/oeqa/selftest/recipetool.py index 72ee110876..a04ee87db2 100644 --- a/meta/lib/oeqa/selftest/recipetool.py +++ b/meta/lib/oeqa/selftest/recipetool.py | |||
| @@ -410,9 +410,11 @@ class RecipetoolTests(RecipetoolBase): | |||
| 410 | srcuri = 'http://www.dest-unreach.org/socat/download/socat-%s.tar.bz2' % pv | 410 | srcuri = 'http://www.dest-unreach.org/socat/download/socat-%s.tar.bz2' % pv |
| 411 | result = runCmd('recipetool create %s -o %s' % (srcuri, temprecipe)) | 411 | result = runCmd('recipetool create %s -o %s' % (srcuri, temprecipe)) |
| 412 | dirlist = os.listdir(temprecipe) | 412 | dirlist = os.listdir(temprecipe) |
| 413 | if len(dirlist) < 1 or not os.path.isfile(os.path.join(temprecipe, 'socat_%s.bb' % pv)): | 413 | if len(dirlist) > 1: |
| 414 | self.fail('recipetool created more than just one file; output:\n%s\ndirlist:\n%s' % (result.output, str(dirlist))) | ||
| 415 | if len(dirlist) < 1 or not os.path.isfile(os.path.join(temprecipe, dirlist[0])): | ||
| 414 | self.fail('recipetool did not create recipe file; output:\n%s\ndirlist:\n%s' % (result.output, str(dirlist))) | 416 | self.fail('recipetool did not create recipe file; output:\n%s\ndirlist:\n%s' % (result.output, str(dirlist))) |
| 415 | self.assertIn('socat_%s.bb' % pv, dirlist, 'Recipe file incorrectly named') | 417 | self.assertEqual(dirlist[0], 'socat_%s.bb' % pv, 'Recipe file incorrectly named') |
| 416 | checkvars = {} | 418 | checkvars = {} |
| 417 | checkvars['LICENSE'] = set(['Unknown', 'GPLv2']) | 419 | checkvars['LICENSE'] = set(['Unknown', 'GPLv2']) |
| 418 | checkvars['LIC_FILES_CHKSUM'] = set(['file://COPYING.OpenSSL;md5=5c9bccc77f67a8328ef4ebaf468116f4', 'file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263']) | 420 | checkvars['LIC_FILES_CHKSUM'] = set(['file://COPYING.OpenSSL;md5=5c9bccc77f67a8328ef4ebaf468116f4', 'file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263']) |
