Back to home page

OSCL-LXR

 
 

    


0001 #!/bin/sh
0002 # SPDX-License-Identifier: GPL-2.0
0003 # Runs API tests for struct drm_mm (DRM range manager)
0004 
0005 if ! /sbin/modprobe -n -q test-drm_mm; then
0006        echo "drivers/gpu/drm_mm: module test-drm_mm is not found in /lib/modules/`uname -r` [skip]"
0007        exit 77
0008 fi
0009 
0010 if /sbin/modprobe -q test-drm_mm; then
0011        /sbin/modprobe -q -r test-drm_mm
0012        echo "drivers/gpu/drm_mm: ok"
0013 else
0014        echo "drivers/gpu/drm_mm: module test-drm_mm could not be removed [FAIL]"
0015        exit 1
0016 fi