mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-10 03:20:49 +00:00
5fd003f56c
This is mainly testing bitmap construction and conversion to/from u32[] for now. Tested: qemu i386, x86_64, ppc, ppc64 BE and LE, ARM. Signed-off-by: David Decotigny <decot@googlers.com> Signed-off-by: David S. Miller <davem@davemloft.net>
11 lines
209 B
Bash
Executable File
11 lines
209 B
Bash
Executable File
#!/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
|