1*5fd003f5SDavid Decotigny#!/bin/sh 2*5fd003f5SDavid Decotigny# Runs bitmap infrastructure tests using test_bitmap kernel module 3*5fd003f5SDavid Decotigny 4*5fd003f5SDavid Decotignyif /sbin/modprobe -q test_bitmap; then 5*5fd003f5SDavid Decotigny /sbin/modprobe -q -r test_bitmap 6*5fd003f5SDavid Decotigny echo "bitmap: ok" 7*5fd003f5SDavid Decotignyelse 8*5fd003f5SDavid Decotigny echo "bitmap: [FAIL]" 9*5fd003f5SDavid Decotigny exit 1 10*5fd003f5SDavid Decotignyfi 11