add: testcases for #1032, #1033, #1034

This commit is contained in:
Ken Sato
2018-03-15 14:31:29 +09:00
parent c107d1fdf9
commit 6a979cf4b8
18 changed files with 1785 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#!/bin/sh
MOD_NAME="test_driver"
lsmod | grep ${MOD_NAME} &> /dev/null
if [ $? -eq 1 ]; then
echo "Module test_driver is not currently loaded"
else
sudo rmmod ${MOD_NAME}
fi