diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-13 09:28:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-13 09:28:20 +0000 |
commit | d24a39ae8059b3d1708f9cb7eca464c353387e3d (patch) | |
tree | 10d8f9ce404f5e6402e03fb4886f2cdee520074b /meta/lib | |
parent | 55a1e521952063ca999846de2e9fdea949c64cfd (diff) | |
download | poky-d24a39ae8059b3d1708f9cb7eca464c353387e3d.tar.gz |
oeqa/recipetool: Fix syntax error
(From OE-Core rev: 680385e86cbeb629e9baa80dfadb432f1fcd6786)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-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 50757035fa..5b54ba60b4 100644 --- a/meta/lib/oeqa/selftest/recipetool.py +++ b/meta/lib/oeqa/selftest/recipetool.py | |||
@@ -411,7 +411,7 @@ class RecipetoolTests(RecipetoolBase): | |||
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, dirlist[0])): | 413 | 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)) | 414 | self.fail('recipetool did not create recipe file; output:\n%s\ndirlist:\n%s' % (result.output, str(dirlist))) |
415 | self.assertEqual(dirlist[0], 'socat_%s.bb' % pv, 'Recipe file incorrectly named') | 415 | self.assertEqual(dirlist[0], 'socat_%s.bb' % pv, 'Recipe file incorrectly named') |
416 | checkvars = {} | 416 | checkvars = {} |
417 | checkvars['LICENSE'] = set(['Unknown', 'GPLv2']) | 417 | checkvars['LICENSE'] = set(['Unknown', 'GPLv2']) |