mirror of
git://git.yoctoproject.org/poky
synced 2026-08-17 03:35:18 +00:00
Install beecrypt test suite and run it as ptest. Make all ptest pass. (From OE-Core rev: f344699eb15933cc7c92b0ed6894ef0869568659) Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
6 lines
119 B
Bash
6 lines
119 B
Bash
#!/bin/sh
|
|
|
|
cd tests
|
|
for i in `ls`; do ./$i; if [ $? == 0 ]; then echo "PASS: $i"; \
|
|
else echo "FAIL: $i"; fi; done
|