summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-12-19 18:29:08 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-17 11:28:15 +0000
commit79b54d902df2788b0822b6c9cc14705ab00e6a5b (patch)
tree7daf3be1b682fd8062b5c9f9621840303e5f7e1b /meta
parent5f3cace37496fe1dc4fd045f688f7d441505c437 (diff)
downloadopenembedded-core-contrib-79b54d902df2788b0822b6c9cc14705ab00e6a5b.tar.gz
oeqa/ptest: print a warning if ptests failed
This allows spotting ptest regressions without having hard ptest failures (for that full ptest stability should be achieved). Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oeqa/runtime/cases/ptest.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/ptest.py b/meta/lib/oeqa/runtime/cases/ptest.py
index a9572c81f0..0800f3c27f 100644
--- a/meta/lib/oeqa/runtime/cases/ptest.py
+++ b/meta/lib/oeqa/runtime/cases/ptest.py
@@ -108,4 +108,5 @@ class PtestRunnerTest(OERuntimeTestCase):
failmsg = failmsg + "Failed ptests:\n%s" % pprint.pformat(failed_tests)
if failmsg:
+ self.logger.warning("There were failing ptests.")
self.fail(failmsg)