mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-03 06:42:49 +00:00
* Remove PACKAGECONFIG[libaio] as libaio is no longer required by libtalloc. * Add ptest. * Refresh patches. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
18 lines
317 B
Bash
18 lines
317 B
Bash
#!/bin/sh
|
|
|
|
ptestdir=$(dirname "$(readlink -f "$0")")
|
|
cd "$ptestdir"/tests || exit
|
|
|
|
tests="replace_testsuite talloc_testsuite"
|
|
|
|
for f in $tests
|
|
do
|
|
if test -x ./"$f"; then
|
|
if ./"$f" > ./"$f".out 2> ./"$f".err; then
|
|
echo "PASS: $f"
|
|
else
|
|
echo "FAIL: $f"
|
|
fi
|
|
fi
|
|
done
|