mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +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:
parent
8fe9d51b11
commit
8e28287dde
|
|
@ -1,5 +1,8 @@
|
|||
#!/bin/sh
|
||||
for x in `find ./ -name Makefile`;
|
||||
do
|
||||
make -C `dirname ${x}` -k runtest-TESTS
|
||||
|
||||
find ./ -name Makefile | while read -r x; do
|
||||
make -C "$(dirname "${x}")" -k runtest-TESTS | sed \
|
||||
-e 's/^\(\[ OK \].*\)$/PASS: \1/' \
|
||||
-e 's/^\(\[ FAILED \].*\)$/FAIL: \1/' \
|
||||
-e 's/^\(\[ SKIPPED \].*\)$/SKIP: \1/'
|
||||
done
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user