diff options
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r-- | meta/classes/sanity.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index f2e9a74441..3806bc5ce7 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -639,6 +639,9 @@ python check_sanity_eventhandler() { | |||
639 | sanity_data.setVar("SANITY_USE_EVENTS", "1") | 639 | sanity_data.setVar("SANITY_USE_EVENTS", "1") |
640 | check_sanity(sanity_data) | 640 | check_sanity(sanity_data) |
641 | bb.event.fire(bb.event.SanityCheckPassed(), e.data) | 641 | bb.event.fire(bb.event.SanityCheckPassed(), e.data) |
642 | elif bb.event.getName(e) == "NetworkTest": | ||
643 | sanity_data = copy_data(e) | ||
644 | bb.event.fire(bb.event.NetworkTestFailed() if check_connectivity(sanity_data) else bb.event.NetworkTestPassed(), e.data) | ||
642 | 645 | ||
643 | return | 646 | return |
644 | } | 647 | } |