Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
mdmillerii
/
openbmc
/
21ab1cde57ea0456e6a86581a8edc8a04dca2a73
/
.
/
poky
/
meta
/
recipes-devtools
/
expect
/
expect
/
run-ptest
blob: 856c314eafa39a36c1332f1e149089d9a2275aec [
file
] [
log
] [
blame
]
#!/bin/sh
out_put
=
`tclsh tests/all.tcl -verbose bpse`
echo
echo
"${out_put}"
|
awk
'/PASSED|FAILED|SKIPPED/{gsub(/PASSED/,"PASS"); gsub(/FAILED/,"FAIL"); gsub(/SKIPPED/,"SKIP"); if ($NF=="PASS"){print $NF": "$(NF-1)}else{print $NF": "$2}}'
|
uniq