diff options
-rw-r--r-- | meta/classes-global/insane.bbclass | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/classes-global/insane.bbclass b/meta/classes-global/insane.bbclass index 5743d91240..c40bae7e3d 100644 --- a/meta/classes-global/insane.bbclass +++ b/meta/classes-global/insane.bbclass | |||
@@ -1348,6 +1348,15 @@ python do_qa_patch() { | |||
1348 | if msg: | 1348 | if msg: |
1349 | oe.qa.handle_error("patch-status", msg, d) | 1349 | oe.qa.handle_error("patch-status", msg, d) |
1350 | 1350 | ||
1351 | ########################################################################### | ||
1352 | # Check for missing ptests | ||
1353 | ########################################################################### | ||
1354 | srcdir = d.getVar('S') | ||
1355 | if not bb.utils.contains('DISTRO_FEATURES', 'ptest', True, False, d): | ||
1356 | pass | ||
1357 | elif bb.data.inherits_class('ptest', d): | ||
1358 | bb.note("Package %s QA: skipping unimplemented-ptest: ptest implementation detected" % d.getVar('PN')) | ||
1359 | |||
1351 | oe.qa.exit_if_errors(d) | 1360 | oe.qa.exit_if_errors(d) |
1352 | } | 1361 | } |
1353 | 1362 | ||