summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3/run-ptest
blob: 405b07f4959832506d1d8b599c8461c8015c1b63 (plain)
1
2
3
#!/bin/sh

python3 -m test -v | sed -u -e '/\.\.\. ok/ s/^/PASS: /g' -r -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'