bitmap.sh 429 字节
Newer Older
1
#!/bin/sh
2
# SPDX-License-Identifier: GPL-2.0
3 4 5 6

# Kselftest framework requirement - SKIP code is 4.
ksft_skip=4

7
# Runs bitmap infrastructure tests using test_bitmap kernel module
8
if ! /sbin/modprobe -q -n test_bitmap; then
9 10
	echo "bitmap: module test_bitmap is not found [SKIP]"
	exit $ksft_skip
11
fi
12 13 14 15 16 17 18 19

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