diff options
author | Changqing Li <changqing.li@windriver.com> | 2019-12-18 15:55:33 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-12-28 23:25:42 +0000 |
commit | e0f93617518137f25d8ed4a12fcd386c924285e1 (patch) | |
tree | 5afbe0181401feba3b8c1d6deb43750ffab5d2f9 | |
parent | 49ddebe61f50750d0259f9cb0413d8814af48bd4 (diff) | |
download | poky-e0f93617518137f25d8ed4a12fcd386c924285e1.tar.gz |
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>
-rw-r--r-- | meta/recipes-devtools/qemu/qemu/run-ptest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/qemu/qemu/run-ptest b/meta/recipes-devtools/qemu/qemu/run-ptest index 2206b31922..b25a792d4f 100644 --- a/meta/recipes-devtools/qemu/qemu/run-ptest +++ b/meta/recipes-devtools/qemu/qemu/run-ptest | |||
@@ -7,4 +7,4 @@ ptestdir=$(dirname "$(readlink -f "$0")") | |||
7 | export SRC_PATH=$ptestdir | 7 | export SRC_PATH=$ptestdir |
8 | 8 | ||
9 | cd $ptestdir/tests | 9 | cd $ptestdir/tests |
10 | make -f Makefile.include -k runtest-TESTS | sed '/: OK/ s/^/PASS: /g' | 10 | make -f Makefile.include -k runtest-TESTS | sed '/^ok /s/ok /PASS: /g' |