You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
323 B
15 lines
323 B
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Runs bitmap infrastructure tests using test_bitmap kernel module
|
|
if ! /sbin/modprobe -q -n test_bitmap; then
|
|
echo "bitmap: [SKIP]"
|
|
exit 77
|
|
fi
|
|
|
|
if /sbin/modprobe -q test_bitmap; then
|
|
/sbin/modprobe -q -r test_bitmap
|
|
echo "bitmap: ok"
|
|
else
|
|
echo "bitmap: [FAIL]"
|
|
exit 1
|
|
fi
|
|
|