mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 12:32:12 +02:00
Install insserv test suite and run it as ptest. (From OE-Core rev: 5bb786241907bb0304edb25ac1d398b3ae7f3be0) Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
258 B
258 B
#!/bin/sh
basedir=$(dirname $0) . $basedir/common
output() {
if [ $? -eq 0 ];
then echo "PASS: $i";
else echo "FAIL: $i";
fi;
}
for i in test_simple_sequence test_undetected_loop;
do $i &>/dev/null ; output;
done
rm -rf ${tmpdir}