aboutsummaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python-pygpgme
diff options
context:
space:
mode:
authorCatalin Enache <catalin.enache@windriver.com>2016-07-22 11:45:10 +0300
committerMartin Jansa <Martin.Jansa@gmail.com>2016-07-29 11:00:58 +0200
commit8dca4abac2743bbd241a3fe9e448b797dc561fbd (patch)
treeffea456c86e9518740b717696b0b441c0a7916db /meta-python/recipes-devtools/python/python-pygpgme
parent9bf3e362e769e5d600fbb621ac0c1edd89529acf (diff)
downloadmeta-openembedded-contrib-8dca4abac2743bbd241a3fe9e448b797dc561fbd.tar.gz
python-pygpgme: update ptest output format
The output format was updated to match yocto ptest rules: <result>: <testname> where the result can be PASS, FAIL, or SKIP, and the testname can be any identifying string. Signed-off-by: Catalin Enache <catalin.enache@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-pygpgme')
-rw-r--r--meta-python/recipes-devtools/python/python-pygpgme/run-ptest2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python-pygpgme/run-ptest b/meta-python/recipes-devtools/python/python-pygpgme/run-ptest
index ac867e2c0a..ce2abb66a5 100644
--- a/meta-python/recipes-devtools/python/python-pygpgme/run-ptest
+++ b/meta-python/recipes-devtools/python/python-pygpgme/run-ptest
@@ -1,3 +1,3 @@
#!/bin/sh
-GPG_AGENT_INFO= python test_all.py -v
+GPG_AGENT_INFO= python test_all.py -v 2>&1 | sed -e '/\.\.\. ok/ s/^/PASS: /g' -e '/\.\.\. [ERROR|FAIL]/ s/^/FAIL: /g' -e '/\.\.\. skipped/ s/^/SKIP: /g' -e 's/ \.\.\. ok//g' -e 's/ \.\.\. ERROR//g' -e 's/ \.\.\. FAIL//g' -e 's/ \.\.\. skipped//g'