Lionel Sambuc 433d6423c3 New sources layout
Change-Id: Ic716f336b7071063997cf5b4dae6d50e0b4631e9
2014-07-31 16:00:30 +02:00

17 lines
327 B
Bash
Executable File

#!/bin/sh
make >/dev/null
echo -n "Kernel test (sys_vumap): "
service up `pwd`/vumaprelay -config system.conf -label vumaprelay -script /etc/rs.single
service up `pwd`/vumaptest -config system.conf -script /etc/rs.single 2>/dev/null
r=$?
service down vumaprelay
if [ $r -ne 0 ]; then
echo "failure"
exit 1
fi
echo "ok"