minix/test/kernel/sys_padconf/run
Thomas Cort 9f4b8dc11b kernel: move do_padconf and add a test case
padconf is specific to arm, so it's being moved to kernel/arch/earm.

Add a test case to ensure the proper error is returned on non-ARM
systems.

Change-Id: I07ebbe64825d59bc0ef9c818d3d54891dafb4419
2013-08-29 09:23:10 -04:00

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"