hc
2023-11-30 6c9be420e167ee7ce45c0309586f09ddab28ac15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
 
# Kselftest framework requirement - SKIP code is 4.
ksft_skip=4
 
# Runs bitmap infrastructure tests using test_bitmap kernel module
if ! /sbin/modprobe -q -n test_bitmap; then
   echo "bitmap: module test_bitmap is not found [SKIP]"
   exit $ksft_skip
fi
 
if /sbin/modprobe -q test_bitmap; then
   /sbin/modprobe -q -r test_bitmap
   echo "bitmap: ok"
else
   echo "bitmap: [FAIL]"
   exit 1
fi