Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
30 lines
452 B
Bash
Executable File
30 lines
452 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo
|
|
echo "---------------------------- libusb1 tests ---------------------------"
|
|
echo
|
|
|
|
./stress | { \
|
|
while read -r str
|
|
do
|
|
echo "$str"
|
|
if [ "${str#*Starting test run:}" != "$str" ]
|
|
then
|
|
name="${str#Starting test run: }"
|
|
name="${name%...}"
|
|
else
|
|
case "$str" in
|
|
"Success (0)")
|
|
echo "PASS: $name"
|
|
;;
|
|
"Failure (1)" | "Error (2)")
|
|
echo "FAIL: $name"
|
|
;;
|
|
"Skip (3)")
|
|
echo "SKIP: $name"
|
|
;;
|
|
esac
|
|
fi
|
|
done
|
|
}
|