mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
16 lines
237 B
Bash
Executable File
16 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
for test in \
|
|
/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
|