15 lines
225 B
Bash
Executable File
15 lines
225 B
Bash
Executable File
#!/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"
|