Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
stefanberger
/
openbmc
/
75b613a3b85d0cabd4a0f74c7af2e88730425622
/
.
/
poky
/
meta
/
recipes-devtools
/
python
/
python3
/
run-ptest
blob: 20c9274dfa7799d81313e354a46ab4efed4257ae [
file
] [
log
] [
blame
]
#!/bin/sh
python3
-
m test
-
W
|
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'