mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 21:49:33 +02:00
event.py: Add SanityCheck and SanityCheckPassed events
(Bitbake rev: 4d7bf9d813229b78b1cd87d06f7042e7923b7db4) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
35196ff703
commit
612555e6fe
@@ -517,3 +517,13 @@ class PackageInfo(Event):
|
|||||||
def __init__(self, pkginfolist):
|
def __init__(self, pkginfolist):
|
||||||
Event.__init__(self)
|
Event.__init__(self)
|
||||||
self._pkginfolist = pkginfolist
|
self._pkginfolist = pkginfolist
|
||||||
|
|
||||||
|
class SanityCheck(Event):
|
||||||
|
"""
|
||||||
|
Event to issue sanity check
|
||||||
|
"""
|
||||||
|
|
||||||
|
class SanityCheckPassed(Event):
|
||||||
|
"""
|
||||||
|
Event to indicate sanity check is passed
|
||||||
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user