Merge branch 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / tools / testing / selftests / lib / bitmap.sh
blob4dee4d2a8bbed810a730d2f8a755188f9e0d3008
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
3 # Runs bitmap infrastructure tests using test_bitmap kernel module
4 if ! /sbin/modprobe -q -n test_bitmap; then
5 echo "bitmap: [SKIP]"
6 exit 77
7 fi
9 if /sbin/modprobe -q test_bitmap; then
10 /sbin/modprobe -q -r test_bitmap
11 echo "bitmap: ok"
12 else
13 echo "bitmap: [FAIL]"
14 exit 1