meta-openembedded/meta-python/recipes-devtools/python/python-pygpgme/run-ptest
Catalin Enache 8dca4abac2 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>
2016-07-29 11:00:58 +02:00

259 B

#!/bin/sh

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'