]> code.ossystems Code Review - openembedded-core.git/commitdiff
qemu: fix ptest output
authorChangqing Li <changqing.li@windriver.com>
Wed, 18 Dec 2019 07:55:33 +0000 (15:55 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 28 Dec 2019 23:25:35 +0000 (23:25 +0000)
The output of qemu test changed, fix the sed cmd to
make it output as expect style

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-devtools/qemu/qemu/run-ptest

index 2206b31922fa9134560ca63a0b10b8d5b375e7cb..b25a792d4f023af41f994cd163f6ccacf73fd01c 100644 (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'