15 lines
225 B
Text
15 lines
225 B
Text
|
#!/bin/sh
|
||
|
|
||
|
make >/dev/null
|
||
|
|
||
|
echo -n "Kernel test (sys_padconf): "
|
||
|
service up `pwd`/padconftest -config system.conf -label padconftest -script /etc/rs.single
|
||
|
r=$?
|
||
|
|
||
|
if [ $r -ne 0 ]; then
|
||
|
echo "failure"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
echo "ok"
|