Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
stefanberger
/
openbmc
/
d1e894976442c78577f52fe7b169812d00289120
/
.
/
poky
/
meta
/
recipes-devtools
/
qemu
/
qemu
/
run-ptest
blob: f9a4e8fb2b556f210b32b95ae0bd1a6adc2b728c [
file
] [
log
] [
blame
]
#!/bin/sh
#
#This script is used to run qemu test suites
#
ptestdir
=
$
(
dirname
"$(readlink -f "
$0
")"
)
export SRC_PATH
=
$ptestdir
cd $ptestdir
/
tests
tests
=
$
(
find
.
-
name
"test-*"
!
-
name
"*.p"
)
for
f
in
$tests
;
do
$f
|
sed
'/^ok/ s/ok/PASS:/g'
done