bitbake: cooker: Add explict handling of BBHandledException for parsing failures

This removes some unnecessary tracebacks

(Bitbake rev: db0ff7b4d47fce8322dd2350a2b1a6f60ef61d25)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2012-08-22 22:40:14 +01:00
parent 4f3d48653a
commit ae71aa0fbb
1 changed files with 5 additions and 0 deletions

View File

@ -1661,6 +1661,11 @@ class CookerParser(object):
except StopIteration:
self.shutdown()
return False
except bb.BBHandledException as exc:
self.error += 1
logger.error('Failed to parse recipe: %s' % exc.recipe)
self.shutdown(clean=False)
return False
except ParsingFailure as exc:
self.error += 1
logger.error('Unable to parse %s: %s' %