Linux Audio

Check our new training course

Loading...
v5.4
1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0
3$(dirname $0)/../kselftest_module.sh "bitmap" test_bitmap
 
 
 
 
 
 
 
v4.10.11
 1#!/bin/sh
 2# Runs bitmap infrastructure tests using test_bitmap kernel module
 3
 4if /sbin/modprobe -q test_bitmap; then
 5	/sbin/modprobe -q -r test_bitmap
 6	echo "bitmap: ok"
 7else
 8	echo "bitmap: [FAIL]"
 9	exit 1
10fi