Files
linux-kernel-module-cheat/rootfs_overlay/test_all.sh
2018-07-01 16:10:29 +01:00

17 lines
261 B
Bash
Executable File

#!/bin/sh
for test in \
/anonymous_inode.sh \
/character_device.sh \
/character_device_create.sh \
/debugfs.sh \
/fops.sh \
/procfs.sh \
/sysfs.sh
do
if ! "$test"; then
echo "lkmc_test_fail: ${test}"
exit 1
fi
done
echo lkmc_test_pass