mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 19:47:17 +00:00
openvpn: change ptest output format
The format selected is the automake "simple test" format: "result: testname". Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
for x in `find ./ -name Makefile`;
|
|
||||||
do
|
find ./ -name Makefile | while read -r x; do
|
||||||
make -C `dirname ${x}` -k runtest-TESTS
|
make -C "$(dirname "${x}")" -k runtest-TESTS | sed \
|
||||||
|
-e 's/^\(\[ OK \].*\)$/PASS: \1/' \
|
||||||
|
-e 's/^\(\[ FAILED \].*\)$/FAIL: \1/' \
|
||||||
|
-e 's/^\(\[ SKIPPED \].*\)$/SKIP: \1/'
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user