summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/qemu/qemu/run-ptest
blob: f9a4e8fb2b556f210b32b95ae0bd1a6adc2b728c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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