Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
mdmillerii
/
openbmc
/
c3d88e4d9fcc08e1aae7cc9d0337c0261e996c64
/
.
/
poky
/
meta
/
recipes-devtools
/
python
/
python3
/
run-ptest
blob: 405b07f4959832506d1d8b599c8461c8015c1b63 [
file
] [
log
] [
blame
]
#!/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'