tegrakernel/kernel/kernel-4.9/tools/testing/selftests/lib/bitmap.sh

11 lines
209 B
Bash
Raw Normal View History

2022-02-16 09:13:02 -06:00
#!/bin/sh
# Runs bitmap infrastructure tests using test_bitmap kernel module
if /sbin/modprobe -q test_bitmap; then
/sbin/modprobe -q -r test_bitmap
echo "bitmap: ok"
else
echo "bitmap: [FAIL]"
exit 1
fi