mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-20 11:38:34 +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
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user