mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
11 lines
209 B
Bash
11 lines
209 B
Bash
![]() |
#!/bin/sh
|
||
|
# Runs bitmap infrastructure tests using test_bitmap kernel module
|
||
|
|
||
|
if /sbin/modprobe -q test_bitmap; then
|
||
|
/sbin/modprobe -q -r test_bitmap
|
||
|
echo "bitmap: ok"
|
||
|
else
|
||
|
echo "bitmap: [FAIL]"
|
||
|
exit 1
|
||
|
fi
|