2015-11-07 08:30:32 +08:00
|
|
|
#!/bin/sh
|
|
|
|
# Runs printf infrastructure using test_printf kernel module
|
2017-06-20 12:48:18 +08:00
|
|
|
if ! /sbin/modprobe -q -n test_printf; then
|
|
|
|
echo "printf: [SKIP]"
|
|
|
|
exit 77
|
|
|
|
fi
|
2015-11-07 08:30:32 +08:00
|
|
|
|
|
|
|
if /sbin/modprobe -q test_printf; then
|
|
|
|
/sbin/modprobe -q -r test_printf
|
|
|
|
echo "printf: ok"
|
|
|
|
else
|
|
|
|
echo "printf: [FAIL]"
|
|
|
|
exit 1
|
|
|
|
fi
|