1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

qemu: fix ptest output

The output of qemu test changed, fix the sed cmd to
make it output as expect style

(From OE-Core rev: 6658290b60a7bc449e720674764adf87d501ec50)

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Changqing Li
2019-12-18 15:55:33 +08:00
committed by Richard Purdie
parent 49ddebe61f
commit e0f9361751
+1 -1
View File
@@ -7,4 +7,4 @@ ptestdir=$(dirname "$(readlink -f "$0")")
export SRC_PATH=$ptestdir
cd $ptestdir/tests
make -f Makefile.include -k runtest-TESTS | sed '/: OK/ s/^/PASS: /g'
make -f Makefile.include -k runtest-TESTS | sed '/^ok /s/ok /PASS: /g'