Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
stefanberger
/
openbmc
/
35245de96c21fa9b0f291e9f664fd8c53ba269fd
/
.
/
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'