bitmap.sh 323 字节
Newer Older
1
#!/bin/sh
2
# SPDX-License-Identifier: GPL-2.0
3
# Runs bitmap infrastructure tests using test_bitmap kernel module
4 5 6 7
if ! /sbin/modprobe -q -n test_bitmap; then
	echo "bitmap: [SKIP]"
	exit 77
fi
8 9 10 11 12 13 14 15

if /sbin/modprobe -q test_bitmap; then
	/sbin/modprobe -q -r test_bitmap
	echo "bitmap: ok"
else
	echo "bitmap: [FAIL]"
	exit 1
fi