Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
mdmillerii
/
openbmc
/
73beeedca9279ec5b1921cc758fab6725d8008a8
/
.
/
poky
/
meta
/
recipes-devtools
/
python
/
python3
/
run-ptest
blob: 3863c6d314fa3391e15c88aa0ff288a304550a3d [
file
] [
log
] [
blame
]
#!/bin/sh
python3
-
m test
-
v
|
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'