Back to home page

OSCL-LXR

 
 

    


0001 #!/bin/sh
0002 # SPDX-License-Identifier: GPL-2.0
0003 # Runs hardware independent tests for i915 (drivers/gpu/drm/i915)
0004 
0005 if ! /sbin/modprobe -q -r i915; then
0006         echo "drivers/gpu/i915: [SKIP]"
0007         exit 77
0008 fi
0009 
0010 if /sbin/modprobe -q i915 mock_selftests=-1; then
0011         /sbin/modprobe -q -r i915
0012         echo "drivers/gpu/i915: ok"
0013 else
0014         echo "drivers/gpu/i915: [FAIL]"
0015         exit 1
0016 fi